getData {iSPlot} | R Documentation |
getData is called by any function whenever it needs data that has been loaded into the 'system'. Note that system could be defined differently by different users. Currently, getData only returns data stored in dfList in the environment, dataEnv. However, a user could add new ways of getting data.
getData(type, name, ...)
type |
the type of data to return, currently only "dataframe" is supported |
name |
the name of the data to return |
... |
any extra parameters that may be needed by future users |
getData returns the data requested.
Elizabeth Whalen
data(USArrests) loadDFData(USArrests, "USArrests") x<-getData(type="dataframe", name="USArrests")