marginalData-methods: Method marginalData from Class "StackedData"

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

Description

This function is a method of the StackedData class which can retrieve the marginalData from a StackedData object or which can assign the marginalData data slot of a StackedData object.

Usage

1
2
3
4
5
6
7
8
  # Get the marginal data from a StackedData object
   marginalData(object)     

  # Set the marginal data slot of a StackedData object
  ## S4 replacement method for signature 'StackedData'
marginalData(object) <- value 

 

Arguments

object

an object of the StackedData class

value

a replacement value

Value

data frame of marginal data.

Methods

signature(object="StackedData")

Get the value of the marginalData slot in the stackedDataObject.

signature(object = "StackedData", value = "data.frame")

Set the value of the marginalData slot in the stackedDataObject.

Author(s)

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

See Also

StackedData, marginalData

Examples

1
2
3
4
5
6
7
8
9
# Load the marginal data and set the marginal data slot
data(marginalDF)
# Create a stacked data object
stackedDataObject = new("StackedData")
# Set the marginal data slot
marginalData(stackedDataObject) = marginalDF

# Get the marginal data from the stacked data object
marginalData = marginalData(stackedDataObject)

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