March 25, 2025

Category: Hosting Data Apps

How to Set Up Quarto with Docker, Part 1: Static Content
Hosting Data Apps, Tech

How to Set Up Quarto with Docker, Part 1: Static Content

Quarto is an open-source scientific and technical publishing system built on Pandoc. It is a cross-platform tool to create dynamic content with Python, R, Julia, and Observable. Quarto.org Quarto documents follow literate programming principles where the code “chunks” are weaved together with text chunks. From an R programming perspective, Quarto documents with a .qmd file […]

Read More
We Need to Talk About Docker Registries
Hosting Data Apps, Tech

We Need to Talk About Docker Registries

Many Docker tutorials begin with docker pull as the first command to cover. The docker pull command is followed by the “tag” of a Docker image that we want to be pulled. Say that we wanted the latest Alpine Linux image (I picked this due to its minimal size): docker pull alpine:latest # latest: Pulling […]

Read More
Containerizing Interactive R Markdown Documents
Hosting Data Apps, Tech

Containerizing Interactive R Markdown Documents

The You can also pull the following two Docker images: docker pull eddelbuettel/r2u:20.04 docker pull nginx:alpine Runtime: Shiny The way to make R Markdown document interactive/reactive is to add runtime: shiny to the document’s YAML header. Now you can add Shiny widgets and Shiny render functions to the file’s R code chunks. This way the […]

Read More
How Many Shiny Apps Can You Host for Free?
Hosting Data Apps, Tech

How Many Shiny Apps Can You Host for Free?

Shiny is an incredible piece of technology. The ease of which with you can make simple prototypes or even production-grade applications is unparalleled. All you need is a bit of R skills. But all this is worthless unless you can present your app to your users. If you are just starting out, you don’t need […]

Read More
Top