Created
July 30, 2014 14:50
-
-
Save bmiles/f3339632142edc8dcf48 to your computer and use it in GitHub Desktop.
R code to generate beanplot from translocation data.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library('beanplot') | |
//load CSV data into data frame | |
df <- data.frame(read.csv('./data/Max_Width.csv')) | |
//beanplot amplitude column, add colours, add labels | |
beanplot(df$Peak.Amplitude..nA., | |
col=c('#bdc3c7','#1abc9c','#1abc9c'), | |
show.names= TRUE, | |
ylab='Peak Amplitude [pA]') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment