Description Usage Arguments Value Methods Author(s) See Also Examples
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.
1 2 3 4 5 6 7 | # 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
1 2 3 4 5 6 7 8 9 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.