build_plate {tidyplate} | R Documentation |
Build a csv or xlsx template for each plate type
Description
build_plate()
helps the user build an empty csv or xlsx file that can be
used as a template for storing plate data. Ensure that plate names are unique.
Once populated it can be used as an input for tidy_plate()
function.
Usage
build_plate(
plate_type = 6,
n_plates = 1,
plate_names = NULL,
file = NULL,
file_type = NULL
)
Arguments
Value
A csv or xlsx template file.
See Also
tidy_plate()
, generate_plate()
Examples
temp_file <- tempfile(fileext = ".csv")
build_plate(plate_type = 6, n_plates = 2, file = temp_file)
[Package tidyplate version 2.2.0 Index]