knitr::opts_chunk$set(echo = TRUE)
r params$filename
.csvr format(Sys.time(), '%B %d, %Y')
r nrow(params$data)
rows in this dataset. DESCRIBE WHAT EACH ROW REPRESENTS.r ncol(params$data)
columns in this dataset. They are described below:# DONT EDIT THIS CODE CHUNK data <- params$data # gather column names in a table meta <- tibble::enframe(colnames(data), name = NULL) %>% dplyr::rename("Header" = value) %>% dplyr::rowwise() %>% dplyr::mutate("Description" = case_when( class(data[[Header]]) == "factor" ~ paste0("levels: ", paste0(levels(data[[Header]]), sep = "", collapse = ", ")), TRUE ~ "ENTER DESCRIPTION OF THIS COLUMN HERE" )) %>% dplyr::mutate("Data Type" = class(data[[Header]]))
knitr::kable(meta, format = "markdown")
Other Notes: Include any other relevant notes/calculations/code here.
Analysis Session Info: Including any relevant data processing scripts is great practice (seriously, good job! 🎉), but for anyone who wants to run your script, they need a little more info. At the very least, make sure that you include any of your session info, so things like:
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.