z_map: Plots a platemap with heatmap of scaled values

View source: R/z_map.R

z_mapR Documentation

Plots a platemap with heatmap of scaled values

Description

Converts numerical values and well labels into multiple plate heatmaps

Usage

z_map(data, well, plate = 96, ...)

Arguments

data

Numerical values to be plotted

well

Vector of well identifiers e.g "A01"

plate

Number of wells in complete plate (6, 12, 24, 48, 96, 384 or 1536))

...

additional parameters to plot wrappers

Value

ggplot plot

Examples

df <- data.frame(vals = rnorm(1:384),
  well = num_to_well(1:384, plate = 384))

z_map(data = df$vals,
      well = df$well,
      plate = 384)

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