Displaying 1 result from an estimated 1 matches for "200706183".
Did you mean:
20070613
2009 Apr 10
1
Subset a data frame for plotting
...ke to plot
(temperature, light, etc.). I would like to break up this large matrix
so as to plot data associated with specific ID values (dates)
separately. I have learned of several commands that supposedly subset
matrices in this manner and have tried the following code with no
success:
200706183<-subset(AllData, ID = 200706183)
200706183<-gx.subset(AllData, ID == 200706183)
200706183<-subset(x=AllData, AllData$ID = 200706183)
200706183<-gx.subset(x=AllData, AllData$ID == 200706183)
In using this code my plan was to create smaller data frame objects
which I could then plot. M...