fortify.flowSet: Convert a flowFrame/flowSet/GatingSet to a ggplot-compatible...

Description Usage Arguments Value Examples

View source: R/fortify.R

Description

It extracts events matrices and appends the pData to it so that ggplot can use the pData for facetting.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## S3 method for class 'flowFrame'
fortify(model, data, ...)

## S3 method for class 'flowSet'
fortify(model, data, ...)

## S3 method for class 'ncdfFlowList'
fortify(model, ...)

## S3 method for class 'GatingSetList'
fortify(model, ...)

## S3 method for class 'GatingSet'
fortify(model, ...)

Arguments

model

flowFrame, flowSet or GatingSet

data

not used.

...

not used.

Value

data.table

data.table

data.table

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
dataDir <- system.file("extdata",package="flowWorkspaceData")
gs <- load_gs(list.files(dataDir, pattern = "gs_manual",full = TRUE))

attr(gs, "subset") <- "CD4" #must attach subset information to GatingSet object before foritfying it
fortify(gs)

fs <- gs_pop_get_data(gs, "CD8")
fortify(fs)#fs is a flowSet/ncdfFlowSet

fr <- fs[[1]]
fortify(fr)#fr is a flowFrame

ggcyto documentation built on Nov. 8, 2020, 5:30 p.m.