descr {lassogrp} | R Documentation |
The attributes descr
and tit
describe an object, typically
a data frame or a model. tit
should be a short description (title),
descr
should contain all documentation useful to identify
the origin and the changes made to the object.
The descr
and tit
functions set them and extract these
attributes.
descr(x) tit(x) descr(x) <- value tit(x) <- value
x |
object to which the |
value |
character vector ( |
Plotting and printing functions may search for the tit
attribute or even for the descr
attribute, depending on
c.env$docout
.
descr(x) <- text
will append the existing descr(x)
text to
the new one unless the first element of text equals "^"
,
whereas tit(x) <- string
replaces tit(x)
.
descr
and tit
return the respective attributes of object
x
Werner A. Stahel, ETH Zurich
data(asphalt) tit(asphalt) descr(asphalt) descr(asphalt) <- "I will use this dataset in class soon." descr(asphalt)