Quiz 4 - Exploratory Data Analysis - Courserav3 PDF
Quiz 4 - Exploratory Data Analysis - Courserav3 PDF
Computations with
MATLAB
Summary Statistics
QUIZ • 1H 10M
Quiz 4: Exploratory Data Analysis
Selecting Data Quiz 4: Exploratory Data Analysis TOTAL POINTS 10
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
Thunderstorm Summary
Started Calculate the duration of each event as the difference between End_Date_Time and Begin_Date_Time.
4. Which state had the most lightning events during the summer months? 1 point
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 < 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";
9. Match each image to the correct statement. Each image can only be used once. 1 point
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:
Horsepower/Weight
Weight/Displacement
Weight
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.
Save Submit