Hello.
I have made many normal boxplots where I have added a new boxplot to
an existing one. When I have done this, I have used the at command to
move the boxplots a bit so that they could fit next to eachother, like
this:
boxplot(data......, at = number_of_categories-0.15)
boxplot(data......, at = number_of_categoreis+0.15, add =TRUE)
Now I am wondering if it is possible to do the same in some way with
bwplot. The data I want to plot is like this:
where phylum and types are the factors I would like to plot no_clust
and no_seqs against.I basically want these in the same plot:
bwplot(no_clust~type|phylum, data = operonthings)
and
bwplot(no_seqs~type|phylum, data = operonthings)
Any thoughts on how to do this?
Thanks!
Karin