# Don't show R code in output knitr::opts_chunk$set(echo = FALSE) # Load useful libraries library(tidyr) library(dplyr) library(purrr) library(rlang) library(utils) library(readr) library(magrittr) library(ggplot2) library(ggmap) library(ggrepel) library(leaflet)
r params$data[, 1]
r format(params$data$date_taken, '%d %B, %Y')
bbox <- c(left = params$data$longitude - 0.02, bottom = params$data$latitude - 0.01, right = params$data$longitude + 0.02, top = params$data$latitude + 0.01) map <- get_stamenmap( bbox = bbox, zoom = 14) map <- ggmap(map, extent = "normal") + geom_point(aes(x = longitude, y = latitude), data = params$data, colour = "red", size = 2) + theme_nothing() map
r paste(params$consistency_table[, c("Typical ASPT Class","Typical NTAXA Class")], collapse = ", ")
(r paste(params$consistency_table[, c("Reported WHPT Class Year")])
)r paste(params$consistency_table[, c("assessment")])
r paste(params$consistency_table[, c("action")])
<<< Please delete and enter your interpretation >>>
r format(Sys.time(), '%d %B, %Y')
r params$data[, 8]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.