I have 4 files each called 0_X_cell.csv, 0_S_cell.csv and 15_X_cell.csv, 15_S_cell.csv
of the format:
p U:0 U:1 U:2 Tracer Tracer_0 U_0:0
-34.014 0.15268 -3.7907 -0.20155 10.081 10.032 0.12454
-33.836 0.07349 -2.1457 -0.30531 27.706 27.278 0.076542
I'd like to create boxplots out of the values for Tracer/3600
and put them on the same graph using ggplot2
but I'm finding it not quite so straightforward. Any suggestions would be much appreciated:
I'm thinking it might something like this:
- Import data from all files into separate variables:
- Extract Tracer from each one and put into a data.frame
- Plot the boxplots of every column Tracer/3600. But each column will be called Tracer...
What would the correct procedure be?