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