Learn R Programming

ddpcr (version 1.15.2)

load_plate: Load a previously saved ddPCR plate

Description

Reloads a plate that has been saved with save_plate.

Usage

load_plate(file)

Value

The plate that was saved in the given file.

Arguments

file

Name of the file where the plate was saved.

See Also

save_plate

Examples

Run this code
plate <- new_plate(sample_data_dir())
save_plate(plate, "myplate")
plate2 <- load_plate("myplate")
plate3 <- load_plate("myplate.rds")
identical(plate, plate2)
identical(plate, plate3)
unlink("myplate.rds")

Run the code above in your browser using DataLab