as_refundObj: Convert data to refund objects for use in functional data...

View source: R/as_refundObj.R

as_refundObjR Documentation

Convert data to refund objects for use in functional data analyses

Description

Very experimental function, primarily used to convert matrices storing functional data to data.frames with specific variable names.

Usage

as_refundObj(obj, ...)

Arguments

obj

Object to be converted. Currently supports class matrix, formatted so that rows contain functional observations on subjects.

...

additional arguments to be passed to methods.

Value

An object of classes data.frame and refund.object, the latter of which is so far not used. Columns are id (taken from the rownames of obj, if they exist), index (with behavior described above), and value (taken from entries in obj).

Author(s)

Jeff Goldsmith jeff.goldsmith@columbia.edu

Examples


## Not run: 
library(ggplot2)
library(refund)

cca_df = as_refundObj(DTI$cca)

ggplot(cca_df, aes(x = index, y = value, group = id)) + geom_line()

## End(Not run)


refund.shiny documentation built on Oct. 11, 2022, 1:05 a.m.