Plot a Plate Map
well_plot(data, well, value, colour = "black")
Dataframe containing data.
Name of the column with well IDs.
Name of the column with the values to plot.
Colour of the well borders.
ggplot2 object.
dat <- wellr::well_plate()[, "well"]
dat$value <- rnorm(96)
well_plot(dat, well, value)