STA 492 2.0/ ASP 460 2.0 Data Visualisation
Lecturer-in-charge:
Dr Thiyanga S. Talagala
Email:
ttatalagala@sjp.ac.lk
Course outline:
Available on Google Classroom
Policies and regulations:
To access important information regarding the unit, please go to the Google Classroom.
Weekly Schedule:
Week 1: May 27, 2025
Week 2: June 3, 2025
Week 3: June 17, 2025
Week 10: August 1, 2025
Week 11: August 5, 2025
Week 12: August 12, 2025
Datasets
- Pedestrian counts in Melbourne city
library(sugrrants)
data(hourly_peds)
- Tickets issued for parking violations in the city of Philadelphia, Pennsylvania in 2017
library(tidyverse)
<- read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-12-03/tickets.csv") philly
- Emission data
<- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2024/2024-05-21/emissions.csv')
emissions emissions
4 ToothGrowth
ToothGrowth
Take a suitable visualization to illustrate the relationship between supp, dose, and the mean tooth growth
- Sydney Beaches: Water Quality Reliability
suppressPackageStartupMessages({
if (!require("pacman")) install.packages("pacman")
::p_load(
pacman
tidytuesdayR,
tidyverse,
ggtext,
showtext,
janitor,
scales,
glue
) })
<- tidytuesdayR::tt_load(2025, week = 20)
tt
<- tt$water_quality |> clean_names()
water_quality_raw <- tt$weather |> clean_names()
weather_raw
::readme(tt)
tidytuesdayRrm(tt)