Displaying 3 results from an estimated 3 matches for "boxpot".
Did you mean:
boxplot
2008 Jun 25
0
subscripted assignments errormessage in gap.boxpot
I am trying to create a boxplot that has a gap with different scales so that my boxes actually show (compare attachments). I have referred to the help pages for gap.boxplot, gap.plot, list with no luck so far. Here is my script and the resulting error message:
# Import *.csv files containing areas for each CLI class
cli3<-read.table("F:\\Megan\\cli3.csv", header=TRUE,
2011 Feb 28
1
Creating Boxpot with R within bash script
I will confess to being very wet behind the ears when it comes to scripting, so with that as a backdrop, here is my question. I can create a box and whisker plot without any problem from the command line, but incorporating that process into a bash script has proved problematic. Below is the portion of the bash script that fails:
R --save --no-save --vanilla << EOF
CAPE.df =
2000 Aug 30
1
by & tapply
Rers,
I have been using the function 'by' in such a manner:
by(LogMetric, list(Loci.Number=Loci.Number, Code.Flag=Code.Flag), plot)
with
par(mfrow=c(5,3))
to produce a single R Graphics: Device with 14 different plots on it as
described above in my 'by' statement. Thank you for helping me thus far.
A similar command using 'tapply' can be written as well.
My