Displaying 1 result from an estimated 1 matches for "hoenne1".
Did you mean:
hoenner
2012 Aug 20
1
Colour gradients and colour fill between points
Hello,
Can somebody help me on a colour question?
I have a levelplot made with the following syntax:
library(lattice)
inp <- read.csv("hoenne1", header = TRUE)
levelplot(z~x*y, data = inp, region = TRUE, pretty = TRUE, col.regions
= terrain.colours)
The file "hoenne1" contains the data. I'll give a short example:
x,y,z
0,0,1
0,1,1
0,2,1
1,0,2
1,2,2
0,2,2
1,2,3
2,2,2
You see that data point 1,1 is missing. My script th...