oldoc63 / learningDS

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

Review #483

Open oldoc63 opened 1 year ago

oldoc63 commented 1 year ago

These are the concepts you've seen in matplotlib so far:

Moving on, we'll learn how to make different kinds of plots in Matplotlib and how to choose between those plots when displaying data.

oldoc63 commented 1 year ago
  1. Define three lists, x, y1, and y2 and fill them with integers. These numbers can be anything you want, but it would be neat to have them be actual metrics that you want to compare.
oldoc63 commented 1 year ago
  1. Plot y1 vs x and display the plot.
oldoc63 commented 1 year ago
  1. On the same graph, plot y2 vs x.
oldoc63 commented 1 year ago
  1. Make the y1 line a pink line and the y2 line a gray line. Give both line round markers.
oldoc63 commented 1 year ago
  1. Give your graph a title of "Two Lines on One Graph", and label the x-axis "Amazing X-axis" and y-axis "Incredible Y-axis".
oldoc63 commented 1 year ago
  1. Give the graph a legend and put it in the lower right.