0% found this document useful (0 votes)
792 views

Quiz 4 - Exploratory Data Analysis - Courserav2

This document is a quiz on exploratory data analysis. It contains 10 multiple choice questions about analyzing weather event data from 2014, including questions about event durations, damage costs by state, injury rates by event type, and using logical indices to select subsets of data. The quiz is worth a total of 10 points and is due on October 19 at 3:59 AM.

Uploaded by

Sarah Mendes
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
792 views

Quiz 4 - Exploratory Data Analysis - Courserav2

This document is a quiz on exploratory data analysis. It contains 10 multiple choice questions about analyzing weather event data from 2014, including questions about event durations, damage costs by state, injury rates by event type, and using logical indices to select subsets of data. The quiz is worth a total of 10 points and is due on October 19 at 3:59 AM.

Uploaded by

Sarah Mendes
Copyright
© © All Rights Reserved
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

Video: Accessing Subsets of Review Key Concepts


Data
1. To complete this quiz, you will first need to import the data in "StormEvents_2014.csv" you downloaded in Module 1. 1 point
5 min
Using an import file or the Import Tool, import the data. Make sure to include the following columns:
Reading: Relational and
Logical Operators State, Month, Event_Type, Begin_Date_Time, End_Date_Time, Injuries_Direct, Property_Cost, Crop_Cost, Begin_Lat,
30 min Begin_Lon, End_Lat, End_Lon 

Calculations by Group Submit your assignment Verify the data type is correctly set for each variable. 
Try again
Video: Introduction to 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? 
Categorical Data
5 min
48
Video: Performing Receive grade Grade
View Feedback
Calculations by Category TO PASS 80% or higher 30%
3 min We keep your highest score

Ungraded External Tool:


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

Recorded Damage
15 min Calculate the duration of each event as the difference between End_Date_Time and Begin_Date_Time.

Reading: Calculations by
Drought
Group
45 min

Graded External Tool:


Thunderstorm Summary
Started 3. In which state did flooding cause the highest total damage cost? Include all types of flooding included in the data set.  1 point

Video: Visualizing Results


5 min Michigan

Video: Summary of Module


4: Performing Calculations
1 min

4. Which state had the most lightning events during the summer months?  1 point
Quiz: Quiz 4: Exploratory
Data Analysis
10 questions
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

Tornado

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 < 8

events == 5 | events == 8

events > 4 & 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"; 

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

ind = 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: Weak/No Correlation, B: Positive Correlation, C: Negative Correlation

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

A: Positive Correlation, B: Negative 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