| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome to the Storytelling with Data course at RSU. In this course, you'll learn how to transform raw data into compelling visual stories using R, tidyverse, and ggplot2.
This hands-on course will teach you:
Dr Sergio Uribe (DDS, MSc, PhD)
Throughout this course, we'll work with several real-world datasets:
We use R with the following key packages:
# Core packages
library(tidyverse) # Data manipulation and visualization (includes ggplot2)
# Additional packages
library(gapminder) # Gapminder dataset
library(gtsummary) # Summary tables
library(here) # Project-relative file paths
library(naniar) # Missing data visualizationThroughout this course, we use the native R pipe (|>) for readable, chainable code:
# Our coding style
data |>
filter(year == 2007) |>
ggplot(aes(x = gdpPercap, y = lifeExp)) +
geom_point()This course material is provided for educational purposes.
Happy visualizing!
| Back | FazBrowse Home | New Git URL |