Description Usage Format Author(s) Examples
A dataset containing the plate coordinates, and data subtypes obtained by
categorizing the colony area of yeast using plate growth median
on a 384 plate format. The data is arranged rowwise format (across). See
the rowwise arrangement of colonyarea in the example given below.
1  | 
A data frame with 384 rows and 3 variables.
| [, 1] |  row  | Horizontal coordinates of a plate. It must have character class. | 
| [, 2] |  column  | Vertical coordinates of a plate. It must have numeric class. | 
| [, 3] |  data_subtypes  | It must have character class indicating the data subtypes. | 
Sathish Kumar Srinivasan sathishsrinivasank@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  | legend_txt_bg_col <- c('Empty'                     = 'red',
                       'Pinning Error'             = 'black',
                       'Morethan Plate Median'     = '#660066',
                       'Lessthan Plate Median'     = 'green',
                       'Morethan 90% Plate Median' = 'cyan',
                       'Lessthan 25% Plate Median' = 'yellow',
                       'Excluded Colonies'         = 'blue')
data_subtypes_384 <- colonyarea$data_subtypes
plateformat <- 1536
across_1536 <- convert_small_to_large(plate_from = 384,
                                      plate_to = 1536,
                                      data_from = data_subtypes_384,
                                      in_data_flow = 'across',
                                      out_data_flow = 'across',
                                      is_plate_coords = TRUE)
plot_platemap(plateformat = plateformat,
              plot_data = across_1536,
              legend_txt_bg_col = legend_txt_bg_col)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.