ldata | R Documentation |
ldata is a list with two type of objects:
df
is a data frame with the multivariate data with n rows.
...
fdata objects of class fdata
with n rows.
ldata(df, ..., mfdata) ## S3 method for class 'ldata' names(x) is.ldata(x) ## S3 method for class 'ldata' x[i, row = FALSE] ## S3 method for class 'ldata' subset(x, subset, ...) ## S3 method for class 'ldata' plot(x, ask = FALSE, color, var.name, ...)
df |
data frame |
... |
Further arguments passed to methods. |
mfdata |
list of fdata objects |
i |
index |
row |
logical If |
subset |
subset |
ask |
logilcal If TRUE (and the R session is interactive) the user is asked for input, before a new figure is drawn. |
color |
colors to interpolate; must be a valid argument to |
var.name |
name of continuous univariate variable used in |
ldata, x |
object of class |
data(tecator) ab0 <- tecator$absorp.fdata ab1 <- fdata.deriv(ab0) ab2 <- fdata.deriv(ab0,nderiv=2) ldat<-ldata(tecator$y,ab1=ab1,ab2=ab2) is.ldata(ldat) class(ldat) plot(ldat[[1]]) plot(ldat[[2]]) # plot(ldat) # plot(ldat,var.name="Fat")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.