getDataEnvVar {iSPlot} | R Documentation |
Three environments are used in the iSPlot package: dataEnv, viewEnv, and controlEnv. These three functions, getDataEnvVar, getViewEnvVar, and getControlEnvVar, returns the value of variables stored in these environments.
getDataEnvVar(dvar) getViewEnvVar(vvar) getControlEnvVar(cvar)
dvar |
the character string of the data environment variable |
vvar |
the character string of the view environment variable |
cvar |
the character string of the control environment variable |
Currently, the variables available in the 3 environments are:
dataEnv: defaultPlotData, dfList, highColor
viewEnv: activeView, curIDpoint, mainTitleColor, viewList
controlEnv: ag, availDF, chosenX, chosenY, clickEvent, colorBrowser, controlWin, curAction, currentColor, dataF, fillPch, findInfo, findOn, gtkTable, keyVals, menuBar, menus, notDone, oldAction, plotTitle, showDF, toggleButtonXList, toggleButtonYList, vBox, viewMode, winCounter, winDefaultHeight, winDefaultWidth, and windowItem
Returns the value of the environment variable
Elizabeth Whalen
if (interactive()) { createControlWindow() getControlEnvVar("winDefaultHeight") }