This function extracts and sets label definitions in Xpose data objects.
xlabel(x, object)
xlabel(object) <- valueThe label of the specified column.
x should be a string exactly matching the name of a column in the
data.frame in the Data slot of an xpose.data object. The name of columns
defined through xpose variable definitions (see xpose.data)
can be extracted using the xvardef function and to be used in the
xlabel function, e.g. xlabel(xvardef("dv",object),object),
which would give the label for the dv variable.
xlabel(object) <- value: sets label definitions in Xpose data objects. assigned value should be a two-element vector
of which the first element is the name of
the variable and the second the label
Other data functions:
add_transformed_columns,
change_graphical_parameters,
change_misc_parameters,
compute.cwres(),
data.checkout(),
data_extract_or_assign,
db.names(),
export.graph.par(),
export.variable.definitions(),
import.graph.par(),
import.variable.definitions(),
make.sb.data(),
nsim(),
par_cov_summary,
read.TTE.sim.data(),
read.nm.tables(),
read_NM_output,
read_nm_table(),
simprazExample(),
tabulate.parameters(),
xpose.data,
xpose.print(),
xpose4-package,
xsubset()
xpdb <- simpraz.xpdb
## Display label for dependent variable in the Xpose data object
xlabel("DV", xpdb)
#> [1] "Observations"
## Set label for dependent variable
xlabel(xpdb) <- c("DV", "Concentration (mg/L)")
xlabel("DV", xpdb) # how has this chnaged?
#> [1] "Concentration (mg/L)"