(Solved) : 3 Power Outages Dataset Contains Information Power Outages Occurred North America 2000 201 Q37187946 . . .


3. Power Outages The dataset below contains information about power outages that occurred in North America between 2000 to 2014. The data is a subset of the data available here. Run the next cell to load the data. In []: # just run this cell power Table.read_table(“powerdata.csv”) power Question 1. Find the proportion of all power outages that occured in the year 2010. Save your answer to the variable outage_2010 In : outage_2010 -. outage_2010 In ok.grade(‘q3_1’) Question 2. Make a bar chart showing the number of outages per NERC Region. Make sure that the bars are sorted from longest to shortest. You can learn more about what a NERC region is here n[): #put your line of code here: Question 3. Draw a line plot of the count of power outages by year. n [): # put your line of code here: Question 4. We notice that there is a spike in power outages in the year 2011. Let’s explore some of the data of the outages in the year 2011. Create a table named power_2011 which has two columns: Event Description , and count, which is a count of the number of times that Event Description occured in 2011 In [: power_2011 -… power_2011 Question 5. Let’s say we want to find the proportion of each event and add it to power_2011. Create a new table called proportion_2011 column called Proportions that adds a new In [ ]: proportion-2011: proportion_2011 In [ J: -= ok-grade(q3-5) Show transcribed image text 3. Power Outages The dataset below contains information about power outages that occurred in North America between 2000 to 2014. The data is a subset of the data available here. Run the next cell to load the data. In []: # just run this cell power Table.read_table(“powerdata.csv”) power Question 1. Find the proportion of all power outages that occured in the year 2010. Save your answer to the variable outage_2010 In : outage_2010 -. outage_2010 In ok.grade(‘q3_1’) Question 2. Make a bar chart showing the number of outages per NERC Region. Make sure that the bars are sorted from longest to shortest. You can learn more about what a NERC region is here n[): #put your line of code here: Question 3. Draw a line plot of the count of power outages by year. n [): # put your line of code here: Question 4. We notice that there is a spike in power outages in the year 2011. Let’s explore some of the data of the outages in the year 2011. Create a table named power_2011 which has two columns: Event Description , and count, which is a count of the number of times that Event Description occured in 2011 In [: power_2011 -… power_2011
Question 5. Let’s say we want to find the proportion of each event and add it to power_2011. Create a new table called proportion_2011 column called Proportions that adds a new In [ ]: proportion-2011: proportion_2011 In [ J: -= ok-grade(q3-5)
Expert Answer
Answer to 3. Power Outages The dataset below contains information about power outages that occurred in North America between 2000 …
OR