podcallMultiplot {PoDCall}R Documentation

podcallMultiplot

Description

A function that returns faceted scatterplots for multiple wells suitable for comparison of wells.

Usage

podcallMultiplot(plateData, thresholds, channel)

Arguments

plateData

A list containing data frames with amplitude values from selected wells that is to be compared. One data frame per well.

thresholds

A vector containing the thresholds for the selected wells

channel

What channel to plot: 1 or 2

Value

Faceted scatterplot with line indicating threshold. One facet per selected well.

Examples


## Set path to data
path <- system.file("extdata", "Amplitudes/", package="PoDCall")

## Read in data files
data <- importAmplitudeData(path)
data("thrTable")

## Create plot using threshold from thrTable, see ?thrTable
plot <- podcallMultiplot(plateData=data,
                        thresholds=thrTable[names(data), ],
                        channel=1)


[Package PoDCall version 1.0.0 Index]