Introduction to Matplotlib

Basic plotting

## import matplotlib, pandas

## read this csv from the internet: https://support.spatialkey.com/wp-content/uploads/2021/02/SacramentocrimeJanuary2006.csv

## do some basic data profiling

## create a basic scatterplot

## create a scatterplot and change the color, add a title, axis labels, etc.

Basic plotting (on your own)

## import matplotlib, pandas

## read this csv from the internet: https://raw.githubusercontent.com/mhaffner/data/master/meuse.csv

## do some basic data profiling

## create a basic scatterplot

## create a scatterplot and change the color, add a title, axis labels, etc.