pfdData-methods {flowPlots}R Documentation

Method pfdData from Class "StackedData"

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

    # 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

# 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)


[Package flowPlots version 1.40.0 Index]