This is a test version of Biostars. For the public version, visit https://www.biostars.org.
I want to create a box plot for RNA-Seq data, but i am new to R, so i don't know, how to perform this task

This is the link

https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE94660

and this is the GSE94660_RPKM_normalized.txt.gz file for which i want to create box plot in R, but i don't know, how to create a box plot for this data. Please help me out.

rna-seq r

Do you know how to make a plot of anything in R? For instance: plot(1,1)? For this question, you simply need to learn some basic R procedures. If you uncompress the file, you'll have to figure out how to read a file into R so that it's a dataframe. And then use the boxplot function to plot your dataframe: boxplot(dataframe). It will plot each column in the boxplot. But this is not the place to learn basic R syntax. There are many resources available for learning this elsewhere.

0 answers

No answers yet.

Log in to answer this question.