Jonathan Quiroz

Results 2 comments of Jonathan Quiroz

I fixed this with pip install -U click I also did the following, but you may not need it. pip install -U requests cookiecutter

I like this solution: ``` cmapType = {'UNK':'pink','MUN':'black'} fig, ax = plt.subplots() for ctype, data in cp.groupby('type'): # Group by type color = cmapType[ctype] label = ctype data.plot(color=color, ax=ax, label=label)...