Hello list,

I'm new to R and I have a problem :-)  Below is what my data file that looks
like.  I tried to import and contour this data by doing this:

   cv_data <- read.table("cv_data.csv",sep=",",header=TRUE)
   attach(cv_data)
   contour(x,y,z)

I get the error "Error in contour.default(x,y,z) : increasing 'x', and 'y'
values expected"  I can see that y is not increasing, but I don't know how
to get this to work.

Thanks in advance for any help.

Bob
=========================================================
x,   y,   z
10, 0.1, 3
10, 0.2, 7
[snip]
10,1.0,5
20,0.1,12
20,0.2,4

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to