This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' --- | |
#' title: "Scheduled Min Process Management" | |
#' --- | |
# Every time this script runs, it should check the minimum process setting value for a given piece of content | |
# If it finds that min processes are set to something other than 0 or NULL, it will set them back to O | |
# If it finds that min processes are set to 0 or NULL, it will set them to 1 | |
library(connectapi) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Public Access Content Analysis with Usage Data" | |
output: html_document | |
date: "2024-07-09" | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Visualizing the ocean floor" | |
output: html_document | |
params: | |
data: "hawaii" | |
--- | |
```{r include = FALSE} | |
library(marmap) | |
library(ggplot2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Test `sf` R Markdown" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
``` | |
## Vignette 3 by Edzer Pebesma |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# RStudio Connect Deployment Pipeline Template | |
# Includes optional steps | |
# | |
trigger: | |
- main | |
pool: | |
vmImage: 'ubuntu-latest' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Bookmarking | |
# Annotations & Commenting | |
# Gitlink | |
# | |
library(shiny) | |
library(gitlink) | |
# Define UI for application that draws a histogram |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# The basic multiple bookmark buttons example on Shiny Dev Center: | |
# https://shiny.rstudio.com/articles/bookmarking-state.html | |
# | |
library(shiny) | |
library(palmerpenguins) | |
library(ggplot2) | |
library(dplyr) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Action Required: Low Inventory Alert!" | |
output: blastula::blastula_email | |
--- | |
<img src="low-inventory-banner.png"> | |
A low inventory alert has been triggered - Review the current inventory levels below to determine which filament colors need to be replenished today. | |
### Current inventory by unit color: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Cookie Cutter Shop Report" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library(blastula) | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
library(DT) | |
data <- read.csv('https://colorado.rstudio.com/rsc/content/2352/data.csv') | |
ui <- fluidPage( | |
titlePanel("Basic Data Filter Application"), | |
hr(), | |
h4("This application presents data generated by a scheduled R Markdown process: ", tags$a(href="https://colorado.rstudio.com/rsc/content/2352", "See it here!")), | |
p("Use this framework to build out your own R Markdown-based ETL jobs hosted on RStudio Connect."), |
NewerOlder