Want class discussion - so participate and ask questions!
Four homework assignments due Wednesdays by 11:59 PM ET
Posted Monday mornings and due Wednesday of the following week
Group EDA Report due Friday October 4th by 5:00 PM ET
Each group will write an IMRD report and present their work in 36-611
Individual Infographics due Friday October 11th by 11:59 PM ET
You will create a high-quality, single page infographic with dataset of your choice
First rough draft for peer feedback due Wednesday Oct 2nd
IMPORTANT! HW0 and GenAI module in HW1
As seen in today’s Canvas announcement - you must submit HW0 by Thursday night!
This is just to make sure you have everything installed correctly and can render .qmd files to PDF
HW1 is posted already, since you will complete a Generative AI Learning Module Assignment
All you need to do is follow the steps in the Fostering GenAI Literacy Canvas Module: Student Information by completing the tasks in order before their respective deadlines in order to receive full credit:
Knowledge Check: Opens on Tuesday August 27 at 12:00 AM and is due Wednesday August 28 by 11:59 PM. This must be completed in one sitting (open for 2 hours in total, but should only take 10-20 minutes).
Learning Modules: Opens on Thursday August 29 at 12:00 AM and is due Friday August 30 by 11:59 PM. This can be completed over multiple sessions.
Knowledge Review: Opens on Saturday August 31 at 12:00 AM and is due Sunday September 1 by 11:59 PM. This must be completed in one sitting (open for 2 hours in total, but should only take 10-20 minutes).
Course Objectives
Practice the Fundamentals of Tidy Data Wrangling and Reproducible Workflows.
Practice tidy data manipulation in R using the tidyverse with consistent code style
Create High-Quality Data Visualizations and Infographics.
Master the use of R and ggplot2 to create data visualizations and infographics that are easily readable and understandable for technical and non-technical audiences
Critique and Write About Data Visualizations and Infographics.
Give useful critiques, feedback, and suggestions for improvement on others’ graphics
What do I mean by tidy data?
Data are often stored in tabular (or matrix) form:
library(palmerpenguins)penguins |>slice(1:5)
# A tibble: 5 × 8
species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g
<fct> <fct> <dbl> <dbl> <int> <int>
1 Adelie Torgersen 39.1 18.7 181 3750
2 Adelie Torgersen 39.5 17.4 186 3800
3 Adelie Torgersen 40.3 18 195 3250
4 Adelie Torgersen NA NA NA NA
5 Adelie Torgersen 36.7 19.3 193 3450
# ℹ 2 more variables: sex <fct>, year <int>