powered by
Fills in missing wells with rows of NA values. Useful for any functions that require a complete plate such as `b_score`.
fill_plate(df, well, plate = 96)
dataframe
Column containing well identifiers i.e "A01"
Number of wells in complete plate (96, 384 or 1536)
vals <- rnorm(96) ; wells <- num_to_well(1:96) df <- data.frame(wells, vals) df_missing <- df[-c(1:10), ] fill_plate(df_missing, "wells")
Run the code above in your browser using DataLab