Skip to contents

Objects of this class represent a multiwell plate.

Usage

# S4 method for Plate
head(x, n = 6L, ...)

# S4 method for Plate
as.character(x)

# S4 method for Plate
show(object)

Arguments

x

A Plate object.

n

The number of wells to be displayed.

...

arguments to be passed to or from other methods.

object

A Plate object

Slots

type

A plate type such as "384", "96", etc.`

deadVolume

The dead volume of wells in this plate.

maxVolume

The maximum volume of wells in this plate.

Examples

plate <- Plate( type       = "384"
              , deadVolume = 10000
              , maxVolume  = 100000)
plate
#> A Plate with data about 384 wells (dead volume: 10000; max volume: 1e+05).