1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env Rscript
# Usage:
#
# octane.R control.csv variable.csv
#
# Output will be placed in Rplots.pdf
#
# Remember: on Octane, higher is better!
args <-
# Reading in data.
control <-
variable <-
# Pulling out columns that we want to plot.
# Not totally necessary.
ctrl <- control$Score..version.9.
var <- variable$Score..version.9.
# Concatenating the values we want to plot.
score <-
# Creating a vector of labels for the data points.
label <-
# Creating a data frame of the score and label.
data <-
# Now plotting!
+
# Adding boxplot without the outliers.
+
# Adding jitter plot on top of the boxplot. If you want to spread the points
# more, increase jitter.