Overview

All the data for this text is located on Github.  Click on any chapter below to see a list of available data sets and a URL for the data set. 

How to Upload Data to StatCrunch from Github

Step 1: Open StatCrunch. 

Step 2: Select Data > Load > From file > on the Web

Step 3: Enter the web address of the data set.  Give the data file a name.  Be sure the delimeter is set to comma.

 

How to Import Data to R or R Studio from Github

df_name <- read.csv("URL of data")

For example, to load the data for Problem 31 in Section 4.1, enter the following

Problem31 <- read.csv("https://sullystats.github.io/Stats7e/Data/Ch4/4_1_31.csv")