Displaying 1 result from an estimated 1 matches for "lk1".
Did you mean:
l1
2008 May 06
1
Plotting separate populations in scatterplot3d
...16, main = "Adding elements")
For some reason, R will not read my header, so I had to use the data.frame
function to get R to read my data. This is a real pain because I have tons
of data. I've tried the following to get R to recognize each population type
separately:
PopulationType.LK1<-PopulationType[LK1]
PopulationType.LK2<-PopulationType[LK2]....
points((PopulationType.LK1, col="red", pch=19), (PopulationType.LK2,
col="blue", pch=22), .....)
When I tweak the example tree code from above, R will plot all of my data no
problem (with the rgl 3d graphs,...