xyplotnew {DASplusR}R Documentation

Xyplot

Description

The function 'xyplotnew()' plots an xyplot by assembling all kind of specifications from different menues and by calling 'scatterplot'.

Usage

xyplotnew()

Arguments

Details

Main specification window

Plot Title:
The name specified here will be put as overall title of the xyplot.
x/y-variables:
Two (different!) variables should be depicted from the list of available variables.
Details:
The click at a button will open a window allowing entering all kind of specifications concerning the 2 variables.
Symbols:
The radio buttons allow the selection of specific symbol types resp. colors.

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.

Add plot to previous one:
The plot to be generated will be placed on the top of the previous one, without erasing it.
Additionals:
Additionals options can be specified.

Details window

asdlfj;dslfjj

Value

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.

Note

There are no missing values allowed, the overwrite flag is optional and by default FALSE. An empty subset-attribute is an empty list (list()).

Author(s)

Rudolf Dutter r.dutter@tuwien.ac.at

See Also

'removeSubsets', 'selectSubsets', 'makeDASData', 'attributes', 'attr'

Examples

# 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")

[Package DASplusR version 0.0-1 Index]