Skip to content

Instantly share code, notes, and snippets.

---
title: "Test document"
author: "Chris Beeley"
date: "20 December 2017"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
---
title: "Minimal example"
author: "Chris Beeley"
date: "1 September 2015"
output: word_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
a <- c("Yes please", "Not this one", "This is also good")

stringr::str_detect(a, "Yes")
#> [1]  TRUE FALSE FALSE

stringr::str_detect(a, "Yes") | stringr::str_detect(a, "good")
#> [1]  TRUE FALSE  TRUE

stringr::str_detect(a, "Yes|good")
library(sparkline)
library(formattable)
library(dplyr)
x = c(0, rep(1000, 5), rep(1000.000001, 5))
res <- mtcars |>
mutate(summary = as.character(
htmltools::as.tags(
sparkline(x, type = "bar",
@ChrisBeeley
ChrisBeeley / app.R
Created May 20, 2022 09:12
Test file saving on Shiny server
# Shiny app with 3 fields that the user can submit data for
ui <- fluidPage(
DT::dataTableOutput("responses", width = 300), tags$hr(),
textInput("name", "Name", ""),
checkboxInput("used_shiny", "I've built a Shiny app in R before", FALSE),
sliderInput("r_num_years", "Number of years using R",
0, 25, 2, ticks = FALSE),
actionButton("submit", "Submit")
)
---
title: "Parameterised Reporting"
author: "Tina Simms"
date: "03/11/2021"
output: html_document
params:
month:
label: "Month of the Year"
value: January
input: select
library(tidyverse)
# produce data
pharmacy_sub <- pharmacy %>%
filter(Site1 == "Site C", NSVCode == "Drug A")
daily_data <- phaRmacyForecasting:::make_tsibble(pharmacy_sub, frequency = "Daily")
# this is old code! I do not advocate doing any of the below :-)
rm(list=ls())
library(psych)
count.NAS=function(x) length(which(is.na(x)))
ASPECT=read.csv("ASPECT.csv")
HONOS=read.csv("HONOS.csv")
ESSENCES=read.csv("ESSENCES.csv")
---
title: "Loop demo"
author: "Chris Beeley"
date: "21/04/2021"
output: html_document
params:
species: NA
---
```{r setup, include=FALSE}
@ChrisBeeley
ChrisBeeley / app.R
Created March 12, 2021 16:58
Demo of reactive data and UI
library(palmerpenguins)
library(tidyverse)
# Define UI for application that draws a histogram
ui <- fluidPage(
# Application title
titlePanel("Reactive example"),
sidebarLayout(