xyplotnew {DASplusR} | R Documentation |
The function 'xyplotnew()' plots an xyplot by assembling all kind of specifications from different menues and by calling 'scatterplot'.
xyplotnew()
Main specification window
Type, color and size can be specified by hand.
The default/preassigned values are shown. Preassigned means e.g. specified just in the previous run.
Details window
asdlfj;dslfjj
The function returns TRUE or FALSE regarding the success of the workflow. The new object is copied to the working environment and is visible there.
There are no missing values allowed, the overwrite flag is optional and by default FALSE. An empty subset-attribute is an empty list (list()).
Rudolf Dutter r.dutter@tuwien.ac.at
'removeSubsets', 'selectSubsets', 'makeDASData', 'attributes', 'attr'
# example data object of class data.frame attach(test) makeSubset(test,"HighNatrium","Na>4") makeSubset(dat,"Rows",1:3) makeSubset(dat,"Rows2",c(1,3,5)) makeSubset(dat,"SpecialRows",c(T,F,T,F,T)) makeSubset(dat,"SpecialRows2",c(0,1,1,0,0)) makeSubset(dat,"Rownames",c("1","2")) # access subsets dat[attributes(test)$subsets$HighNatrium$indices,] # delete specific subsets removeSubsets(test,c(1,3,5)) # delete all removeSubsets(test,"all")