oceRenameData {oce} | R Documentation |
Rename Something in the data slot of an oce Object
Description
Rename an item within the data
slot of an oce object, also changing
dataNamesOriginal
in the metadata
slot, so that the [[
accessor will
still work with the original name that was stored in the data.
Usage
oceRenameData(object, old, new, note = "")
Arguments
object |
an oce object. |
old |
character value that matches the name of an item in |
new |
character value to be used as the new name that matches the name of an item in
|
note |
character value that holds an explanation of the reason for the change. If this
is a string of non-zero length, then this is inserted in the processing log of the returned
value. If it is |
Author(s)
Dan Kelley
See Also
Other things related to the data slot:
oceDeleteData()
,
oceGetData()
,
oceSetData()
Examples
library(oce)
data(ctd)
CTD <- oceRenameData(ctd, "salinity", "SALT")
stopifnot(all.equal(ctd[["salinity"]], CTD[["SALT"]]))
stopifnot(all.equal(ctd[["sal00"]], CTD[["SALT"]]))