Learn R Programming

flowPlots (version 1.20.0)

pfdData-methods: 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. "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.

See Also

StackedData, pfdData

Examples

Run this code
# 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)

Run the code above in your browser using DataLab