Learn R Programming

platetools (version 0.1.7)

missing_wells: Returns wells that are missing from a complete plate

Description

Returns a vector of wells that are missing from a complete plate.

Usage

missing_wells(df, well, plate = 96)

Value

vector of missing wells

Arguments

df

dataframe

well

Column containing well identifiers i.e "A01"

plate

Number of wells in complete plate (96 or 384)

Examples

Run this code
vals <- rnorm(96) ; wells <- num_to_well(1:96)
df <- data.frame(vals, wells)
df_missing <- df[-c(1:10), ]
missing_wells(df_missing, "wells")

Run the code above in your browser using DataLab