missing_wells: Returns wells that are missing from a complete plate

View source: R/missing_wells.R

missing_wellsR Documentation

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)

Arguments

df

dataframe

well

Column containing well identifiers i.e "A01"

plate

Number of wells in complete plate (96 or 384)

Value

vector of missing wells

Examples

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")

Swarchal/platetools documentation built on March 7, 2024, 10 p.m.