I have this data frame
county | date | type | value
-----------------------------------------
Alameda 2020-01-01 masks 1
Alameda 2020-01-02 masks 3
Alameda 2020-01-03 closure 4
Alameda 2020-01-04 closure 7
I want to plot in the x axis the date and in the y axis the value but for each different "type" (masks, closure) make different lines but in the same graph. How Can I do this?
Thank you