| pfdData-methods {flowPlots} | R Documentation |
This function is a method of the StackedData class which retrieves the pfdData from a StackedData object or which assigns the pfdData data slot of a StackedData object.
# Get the pfdData from a StackedData object.
pfdData(object)
# Set the pfdData slot of a StackedData object.
## S4 replacement method for signature 'StackedData'
pfdData(object) <- value
object |
an object of the StackedData class |
value |
a replacement value |
data frame of pfd data.
signature(object = "StackedData")Get the pfdData from the object.
signature(object = "StackedData", value = "data.frame")Set the value of the pfdData slot in the object.
N. Hawkins, Fred Hutchinson Cancer Research Center, Seattle, WA
# Load the pfd data and set the pfd data slot
data(pfdDF)
# Create a stacked data object
stackedDataObject = new("StackedData")
# Set the pfd data slot
pfdData(stackedDataObject) = pfdDF
# Get the pfd data from the stacked data object
pfdData = pfdData(stackedDataObject)