Displaying 1 result from an estimated 1 matches for "meanannualdepth".
2012 Feb 16
1
Is there a function for scatter3d with Categorical responses?
...#39;m after but with a categorical response instead of a continuous one
library(car)
library(rgl)
scatter3d(prestige ~ income + education | type , surface=FALSE,
ellipsoid=TRUE, revolutions=3, data=Duncan)
Using my data I'd like to use the function as follows:
scatter3d(CSSS$VegtypeID ~ CSSS$MeanAnnualDepth + CSSS$Hydroperiod +
CSSS$MedianWet, ellipsoid=TRUE, revolutions=3, data=CSSS)
or:
scatter3d(CSSS$DA7Depth ~ CSSS$MeanAnnualDepth + CSSS$Hydroperiod +
CSSS$MedianWet | type=CSSS$VegtypeID, ellipsoid=TRUE, revolutions=3,
data=CSSS)
If you know of a different function / package combination that...