Course Outline
- 
        segmentGetting Started (Don't Skip This Part)
- 
        segmentStatistics and Data Science: A Modeling Approach
- 
        segmentPART I: EXPLORING VARIATION
- 
        segmentChapter 1 - Welcome to Statistics: A Modeling Approach
- 
        segmentChapter 2 - Understanding Data
- 
        segmentChapter 3 - Examining Distributions
- 
        segmentChapter 4 - Explaining Variation
- 
        segmentPART II: MODELING VARIATION
- 
        segmentChapter 5 - A Simple Model
- 
        segmentChapter 6 - Quantifying Error
- 
        segmentChapter 7 - Adding an Explanatory Variable to the Model
- 
        segmentChapter 8 - Digging Deeper into Group Models
- 
        segmentChapter 9 - Models with a Quantitative Explanatory Variable
- 
        segmentPART III: EVALUATING MODELS
- 
        segmentChapter 10 - The Logic of Inference
- 
                
                  10.9 Chapter 10 Review Questions 2
 
- 
        segmentChapter 11 - Model Comparison with F
- 
        segmentChapter 12 - Parameter Estimation and Confidence Intervals
- 
        segmentChapter 13 - What You Have Learned
- 
        segmentFinishing Up (Don't Skip This Part!)
- 
        segmentResources
list High School / Advanced Statistics and Data Science I (ABC)
      
        
        
          
Book          
        
        
      
      
        
      
      
    
    
  10.9 Chapter 10 Review Questions 2
require(coursekata)
top_50_long <- read.csv("https://docs.google.com/spreadsheets/d/e/2PACX-1vTnNejzAPGLo_IgpbkWwjhUG7LGpJmHmIZ78AmT6tR2pgaUfApsOSQaLPMZ9oZ-bpSgvKGErmdaLKhz/pub?gid=1143384330&single=true&output=csv")
top_50 <- select(top_50_long, track_name, artist_name, genre, bpm, danceability, length, popularity)
# run your code hereCK Code: C1_Code_Review2_01
require(coursekata)
top_50_long <- read.csv("https://docs.google.com/spreadsheets/d/e/2PACX-1vTnNejzAPGLo_IgpbkWwjhUG7LGpJmHmIZ78AmT6tR2pgaUfApsOSQaLPMZ9oZ-bpSgvKGErmdaLKhz/pub?gid=1143384330&single=true&output=csv")
top_50 <- select(top_50_long, track_name, artist_name, genre, bpm, danceability, length, popularity)
# run your code hereCK Code: C1_Code_Review2_02