plotting individual values within multiple groups together with their means

[This article was first published on gacatag, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In this post I show how groupScatterPlot(), function of the rnatoolbox R package can be used for plotting the individual values in several groups together with their mean (or other statistics). I think this is a useful function for plotting grouped data when some groups (or all groups) have few data points ! You may be wondering why to include such function in the rnatoolbox package ?! Well ! I happen to use it quit a bit for plotting expression values of different groups of genes/transcripts in a sample or expression levels of a specific gene/transcript in several sample groups. These expression value are either FPKM, TPM, LCPM, or PSI values (Maybe I should go through these different normalizations later in a different post 😐!). But of course its application is not restricted to gene expression or RNAseq data analysis.

For the test, I first generate a list with three random values. The values are generated randomly using normal distribution, featuring different means and standard deviations.

library(rnatoolbox)
datList<- list(
  l1=rnorm(n=30, mean = 10, sd = 3),
  l2=rnorm(n=20, mean = 0, sd = 1),
  l3=rnorm(n=25, mean = 10, sd = 1)
)


Then I plot the grouped values. Byt default the mean function is used to add a summary for the values. However, other functions (e.g. median) can be defined as the FUN parameter.


png(
  “/proj/pehackma/ali/test/test_rnatoolbox/test_groupedScatterPlot_3.png”,
  width=500, height=500, pointsize=21)
groupScatterPlot(l=datList, col=rainbow(3),
                 lty=1, lwd=1.5,
                 ylab=”Test values”)
dev.off()



To leave a comment for the author, please follow the link and comment on their blog: gacatag.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)