You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Incorporated feedback from consultations with Prof. Yana Weinstein, cognitive psychological scientist and co-founder of The Learning Scientists.
Restructured/revamped chapters
Chapter 1: Introduction
Friendlier introduction targetted to students is first thing users see. Followed then by introduction for instructors, ways to connect/contribute, and technical details.
Added links to example student projects from two courses that have previously used ModernDive:
Chapter 2: Getting Started New chapter added meant for new R users/coders, including
Discusions on R vs RStudio and how to install both (with support videos)
A "How do I code in R?" section with links to DataCamp.com courses that covers the console, data types, vectors, factors, data frames, boolean operators, functions etc
Thorough discussion on R packages
An end-to-end starter example analysis of the data frames in the nycflights13 package using the console, View(), glimpse() etc.
Chapter 3: Data Visualization via ggplot2 now first non-intro chapter.
Replaced Menard's "Napolean's March on Moscow" with Hans Rosling's (RIP) "Gapminder" plots as introductory example to Grammar of Graphics.
Added geom_col() for making barcharts when data is pre-tabulated, instead of using geom_bar(stat="identity")
Chapter 4: Tidy Data via tidyr bumped back. Added sections on converting from wide to long/tidy format and importing CSV's
Chapter 5: Data Manipulation Wrangling via dplyr
Chapter 6: Data Modeling using Regression via broom bumped up from end of book to here given its pedagogical importance, added notes on viewing regression in a prediction framework.
Chapter 7-9: Sampling, Hypothesis Testing, Confidence Intervals Mostly unchanged for now; see pending changes section below.