oldoc63 / learningDS

Learning DS with Codecademy and Books
0 stars 0 forks source link

Labeled Pie Chart #502

Open oldoc63 opened 1 year ago

oldoc63 commented 1 year ago

Now, we are going to look at the chart called pie.png. This displays what students think the hardest topic covered throughout your math course is. The data you will need to recreate this chart is in the lists unit_topics and num_hardest_reported. Save your recreated chart to a file called my_pie_chart.png.

oldoc63 commented 1 year ago
  1. Create a figure of width 10 and height 8.
oldoc63 commented 1 year ago
  1. Plot the num_hardest_reported list as a pie chart.
oldoc63 commented 1 year ago
  1. Label the slices with the unit_topics list and put a percentage label on each slice, rounded to the nearest int.
oldoc63 commented 1 year ago
  1. Add the title "Hardest Topics"-
oldoc63 commented 1 year ago
  1. Save your figure to a file called my_pie_chart.png