Finding standard deviation from dataframe
Hi,
I'm studying about DNA methylation.
I ran minfi to get a beta value file, but the file size is too large.
So i have to filtering this file as standard deviation >0.05 by cgIDs.
How do I get standard deviation value??
standard
dnamethylation
deviation
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Methylation analysis plroblem
written by Wilo •Hello, I am performing a differential methylation analysis using the RnBeads package. I generated volcano plots to visualize differential methylation at gene level. However, I …
-
nanopore data analysis methylation modification
written by Domi •Hi all I have two sets of nanopore DNA sequencing data (experimental group and control group). Using the mCaller tool, I extracted the 6mA methylation …
-
Star indexing
written by borna.jurkovic13 •I've been trying to STAR index a reference sequence file but I am not getting a fa fai file. These are the files I am …
-
Plots for DNA methylation vs Gene Expression
written by sswang25 •I have trying to visualize the correlation between DNA methylation and Gene expression in my dataset of 52 unique samples. I have DNA methylation beta …
-
Why in my Per Tile Sequence Quality plot, the Y-axis starts with 1101?
written by ManuelDBFastQC (version 0.11.9) ran with Galaxy ![enter image description here][1] [1]: /media/images/fad54150-21a4-4aa0-9335-14ebf0a4 Measure Value Filename Cardiac_R1_fastq File type Conventional base calls Encoding Sanger / Illumina …
-
DNA methylation batch effect remove
written by soyeon •Hi, I'm studying about DNA methylation. I draw heatmap with beta-value, but there are batch effects.. How can I remove these cgID with studio R? …
-
DNA methylation analysis package "Minfi"
written by soyeon •Hi , I'm studying about minfi package. I don't understand the bisulfite conversion results. And beta-value,M-value too. How should I interpret the data for the …
-
Dna methylation package minfi
written by soyeon •Hi, I’m studing about DNA methylation. I used minfi package for DNA methylation analysis!! After beta value and annotation value merge, open it with excel. …
-
How can I add text label outside the tree in iTOL ?
written by anran04100 •here is the tree in iTOL ![enter image description here][1] now I've got a txt file with information in it ![enter image description here][2] How …
-
News: DNA Methylation Data Analysis Workshop (April 12-15, 2021 in Berlin)
written by David LangenbergerDNA Methylation Data Analysis Workshop -------------------------------------- How to use bisulfite-treated sequencing to study DNA methylation ---------- **When?** April 12-15, 2021 **Where?** Berlin, Germany **Link:** https://www.ecseq.com/workshops/workshop_2021-04-NGS-DNA-Methylation-Data-Analysis …
I am not convinced about filtering CpGs by standard deviation because "the file is too large" but if you want to do that using R, you can use
apply(dataframe,1,sd)to obtain sd for each CpGThank you so much...
Do you know how to get the standard deviation of rows all at once and add them to the dataframe?
Supposing df is your dataframe of beta values :
df$sd = apply(df,1,sd)