library(magrittr) library(cdp)
Overview of data
mc_profiles_n30439x812$column.annotations %>% dplyr::glimpse()
Number of wells
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(plate_name, plate_well) %>% dplyr::distinct(plate_name, plate_well) %>% dplyr::count() %>% knitr::kable()
Number of plates
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(plate_name) %>% dplyr::distinct(plate_name) %>% dplyr::count() %>% knitr::kable()
Number of wells in each plate
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(plate_name) %>% dplyr::group_by(plate_name) %>% dplyr::tally() %>% knitr::kable()
Number of compounds
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(BROAD_CPD_ID) %>% dplyr::distinct(BROAD_CPD_ID) %>% dplyr::count() %>% knitr::kable()
Number of compound-concentration pairs
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(BROAD_CPD_ID, pert_dose) %>% dplyr::distinct(BROAD_CPD_ID, pert_dose) %>% dplyr::count() %>% knitr::kable()
Distribution of well counts
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(plate_well) %>% dplyr::group_by(plate_well) %>% dplyr::tally() %>% dplyr::rename(plate_well_counts = n) %>% dplyr::group_by(plate_well_counts) %>% dplyr::tally()
Distribution of compound counts
mc_profiles_n30439x812$column.annotations %>% dplyr::arrange(BROAD_CPD_ID, pert_dose) %>% dplyr::group_by(BROAD_CPD_ID, pert_dose) %>% dplyr::tally() %>% dplyr::rename(BROAD_CPD_ID_pert_dose_counts = n) %>% dplyr::group_by(BROAD_CPD_ID_pert_dose_counts) %>% dplyr::tally()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.