This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#create string variable for Year | |
r['new_year'] = r.Year.astype('str') | |
#set colors for different plot type | |
colors1=sns.color_palette('husl', 8) #number represents how many things being plotted | |
#create plot in a different way so can enable markers specific to each MACOM | |
#can mess with the height and width using the figsize= | |
fig, ax = plt.subplots(figsize=(8, 4)) |