load_plate | R Documentation |
Reloads a plate that has been saved with save_plate
.
load_plate(file)
file |
Name of the file where the plate was saved. |
The plate that was saved in the given file.
save_plate
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.