Nothing
# PlotGeoReport
#' A multi-plot wrapper to convert a list of SRA 'run_ids' into
#' a geographic world-map and timeline.
#'
#' @param run_ids character, vector of SRA run_id
#' @param con pq-connection, use SerratusConnect()
#' @return A grid-table object. Dimension standard is 800 x 600 px.
#' @keywords palmid sql geo timeline Serratus Tantalus
#'
#' @import dplyr ggplot2
#' @export
PlotGeoReport <- function(run_ids, con = SerratusConnect()) {
geo <- ggplotify::as.grob(PlotGeo( run_ids, con))
timeline <- ggplotify::as.grob(PlotTimeline( run_ids, con))
GeoTime <- gridExtra::arrangeGrob( geo, timeline,
layout_matrix = rbind(c(1, 1),
c(1, 1),
c(1, 1),
c(2, 2)) )
return(GeoTime)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.