nwsDeleteVar {nws} | R Documentation |
Delete a variable from the shared netWorkSpace.
## S4 method for signature 'netWorkSpace'
nwsDeleteVar(.Object, xName)
.Object |
a netWorkSpace class object. |
xName |
character string specifying the name of the variable to be deleted. |
## Not run:
ws <- netWorkSpace('nws example')
nwsStore(ws, 'x', 10)
nwsDeleteVar(ws, 'x')
## End(Not run)