Displaying 1 result from an estimated 1 matches for "volatile_disperser_matrix".
2007 May 25
1
Problem with rpart
...;t see it, nor could I
find it in the help or in this forum.
I want to see whether I can predict disperser type (5 categories) of a
species given the volatile compounds that the fruits emit (108 volatiles)
I am writing:
>dispvol.x<- read.table ('C:\\Documents and
Settings\\silvia\\...\\volatile_disperser_matrix.txt', header=T)
>dispvol.df<- as.data.frame (dispvol.x)
>attach (dispvol.df) #I think I need to do this so the variables are
identified when I write the regression equation
>dispvol.ctree <- rpart (disperser~ P3.70 +P4.29 +P5.05 +... +P30.99 +P32.25
+TotArea, >data= dispvol.df...