0% found this document useful (2 votes)
2K views1 page

Quiz 4 - Exploratory Data Analysis - Courserav3 PDF

This document is a 10 question, 1 hour and 10 minute graded quiz on exploratory data analysis. It involves importing a dataset on weather events from 2014, performing calculations on the data such as finding duration, counts, and rates of events by type and location. Questions assess understanding of logical indexing, correlations, and interpreting scatter plots.

Uploaded by

Sarah Mendes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (2 votes)
2K views1 page

Quiz 4 - Exploratory Data Analysis - Courserav3 PDF

This document is a 10 question, 1 hour and 10 minute graded quiz on exploratory data analysis. It involves importing a dataset on weather events from 2014, performing calculations on the data such as finding duration, counts, and rates of events by type and location. Questions assess understanding of logical indexing, correlations, and interpreting scatter plots.

Uploaded by

Sarah Mendes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Quiz 4: Exploratory Data Analysis Due Oct 19, 3:59 AM -03

Graded Quiz • 1h 10m

Computations with
MATLAB

Summary Statistics
QUIZ • 1H 10M
Quiz 4: Exploratory Data Analysis
Selecting Data Quiz 4: Exploratory Data Analysis TOTAL POINTS 10

Calculations by Group Review Key Concepts

Video: Introduction to 1. To complete this quiz, you will first need to import the data in "StormEvents_2014.csv" you downloaded in Module 1. 1 point
Categorical Data Using an import file or the Import Tool, import the data. Make sure to include the following columns:
5 min
State, Month, Event_Type, Begin_Date_Time, End_Date_Time, Injuries_Direct, Property_Cost, Crop_Cost, Begin_Lat,
Video: Performing
Begin_Lon, End_Lat, End_Lon 
Calculations by Category
3 min Submit your assignment Verify the data type is correctly set for each variable. 
Try again
Ungraded External Tool: DUE DATE Oct 19, 3:59 AM -03 ATTEMPTS 3 every 8 hours
How many unique types of events occurred? In other words, how many categories are there in Event_Type? 
Lightning Strikes with
Recorded Damage
15 min 48
Receive grade Grade
View Feedback
Reading: Calculations by TO PASS 80% or higher 70%
Group We keep your highest score
45 min

Graded External Tool:


2. What is the Event_Type of the longest lasting event?  1 point

Thunderstorm Summary
Started Calculate the duration of each event as the difference between End_Date_Time and Begin_Date_Time.

Video: Visualizing Results


Drought
5 min

Video: Summary of Module


4: Performing Calculations
1 min
3. In which state did flooding cause the highest total damage cost? Include all types of flooding included in the data set.  1 point
Quiz: Quiz 4: Exploratory
Data Analysis
10 questions Michigan

4. Which state had the most lightning events during the summer months?  1 point

Consider June, July, and August as the summer months. 

Texas

5. Which event type results in the highest total number of direct injuries?  1 point

Winter Weather

6. Which event type has the highest rate of direct injuries? Here rate refers to the direct injuries per event for each 1 point
type. Does the result surprise you? Think about what else you might do if you're trying to find the most dangerous type of
event.

Sneakerwave

7. Assume a vector named events contains only integer values. Which code below returns the logical index 1 point
identifying all values within the range of [5 8] in the vector "events"? 

 events > 5 | events < 8

events > 4 & events <= 8

events < 8

events == 5 | events == 8

8. Which line of code creates the logical index to select all events in Kansas that caused more than $10,000 in property 1 point
damage excluding tornado events? 

ind = StormEventsData.State=="KANSAS" &


StormEventsData.Property_Cost>10000 & StormEventsData.Event_Type~="Tornado";

ind = StormEventsData.State=="KANSAS" |
StormEventsData.Property_Cost>10000 | StormEventsData.Event_Type~="Tornado"; 

StormEventsData.State=="KANSAS" + StormEventsData.Property_Cost>10000 -
StormEventsData.Event_Type~="Tornado"; 

ind = StormEventsData.State=="KANSAS" & StormEventsData.Property_Cost>10000 -


StormEventsData.Event_Type=="Tornado";

9. Match each image to the correct statement. Each image can only be used once. 1 point

A: Positive Correlation, B: Negative Correlation, C: Weak/No Correlation

A: Weak/No Correlation, B: Positive Correlation, C: Negative Correlation

A: Negative Correlation, B: Positive Correlation, C: Weak/No Correlation

10. Earlier in this module you looked at 8 cylinder automobiles from the 70's and 80's and found the following correlation 1 point
coefficients:

1. -0.67 for Acceleration and Horsepower/Weight

2. +0.68 for Acceleration and Weight/Displacement

3. +0.055 for Acceleration and Weight

Which of the above quantities is a good predictor of Acceleration?

Horsepower/Weight

Weight/Displacement

Weight

None of the quantities can be used to predict Acceleration

1) and 2) are nearly equal given the strength of the correlation coefficient.

I, Sarah Silveira Mendes, understand that submitting work that isn’t my own may result in
permanent failure of this course or deactivation of my Coursera account. 

Learn more about Coursera’s Honor Code

Save Submit

You might also like