pfdData-methods: Method pfdData from Class "StackedData"

Description Usage Arguments Value Methods Author(s) See Also Examples

Description

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.

Usage

1
2
3
4
5
6
7
    # 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
 

Arguments

object

an object of the StackedData class

value

a replacement value

Value

data frame of pfd data.

Methods

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.

Author(s)

N. Hawkins, Fred Hutchinson Cancer Research Center, Seattle, WA

See Also

StackedData, pfdData

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# 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)

flowPlots documentation built on Nov. 8, 2020, 7:54 p.m.