Displaying 2 results from an estimated 2 matches for "cli5".
Did you mean:
cli
2008 Jun 25
3
gap.boxplot error message?
Hello,
When I put in the following script line:
gap.boxplot(CLI3, CLI4, CLI5, CLI6, CLI7, gap=list(top=c(8000,280000), bottom=c(0,250)), range=50, outline=TRUE, par(ask=FALSE)
I get a '+' telling me I am missing something. I have tried adding ')', 'width=NULL', etc and then I get this error:
Error: unexpected symbol in:
"gap.boxplot(CLI3, CLI4,...
2008 Jun 25
0
subscripted assignments errormessage in gap.boxpot
...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, sep=",")
cli4<-read.table("F:\\Megan\\cli4.csv", header=TRUE, sep=",")
cli5<-read.table("F:\\Megan\\cli5.csv", header=TRUE, sep=",")
cli6<-read.table("F:\\Megan\\cli6.csv", header=TRUE, sep=",")
cli7<-read.table("F:\\Megan\\cli7.csv", header=TRUE, sep=",")
# Attach these to the dataframe
attach(cli3)
att...