Это график зависимости углерода (y1985 и c) от расстояния (st).
Я пытаюсь отобразить изменения параметра во времени с помощью цвета ... поэтому я хотел бы иметь непрерывный градиент цвета, проходящий через все графики, например от светло-голубого до темно-синего, которые представляют 1985-2018 гг. Или цветная карта «jet», проходящая через ... Это возможно?
fig, ax = plt.subplots()
ax.scatter(dfc['st'],dfc['y1985'],c='lightskyblue')
ax.scatter(dfc['st'],dfc['y1986'],c='lightskyblue')
ax.scatter(dfc['st'],dfc['y1987'],c='cornflowerblue')
ax.scatter(dfc['st'],dfc['y1988'],c='cornflowerblue')
ax.scatter(dfc['st'],dfc['y1989'],c='steelblue')
ax.scatter(dfc['st'],dfc['y1990'],c='steelblue')
ax.scatter(dfc['st'],dfc['y1991'],c='royalblue')
ax.scatter(dfc['st'],dfc['y1992'],c='royalblue')
ax.scatter(dfc['st'],dfc['y1993'],c='navy')
ax.scatter(dfc['st'],dfc['y1994'],c='navy')
ax.scatter(dfc['st'],dfc['y1995'],c='lightgreen')
ax.scatter(dfc['st'],dfc['y1996'],c='lightgreen')
ax.scatter(dfc['st'],dfc['y1997'],c='mediumseagreen')
ax.scatter(dfc['st'],dfc['y1998'],c='mediumseagreen')
ax.scatter(dfc['st'],dfc['y1999'],c='seagreen')
ax.scatter(dfc['st'],dfc['y2000'],c='seagreen')
ax.scatter(dfc['st'],dfc['y2001'],c='green')
ax.scatter(dfc['st'],dfc['y2002'],c='green')
ax.scatter(dfc['st'],dfc['y2003'],c='darkgreen')
ax.scatter(dfc['st'],dfc['y2004'],c='darkgreen')
ax.scatter(dfc['st'],dfc['y2005'],c='lightsalmon')
ax.scatter(dfc['st'],dfc['y2006'],c='lightsalmon')
ax.scatter(dfc['st'],dfc['y2007'],c='darksalmon')
ax.scatter(dfc['st'],dfc['y2008'],c='darksalmon')
ax.scatter(dfc['st'],dfc['y2009'],c='coral')
ax.scatter(dfc['st'],dfc['y2010'],c='coral')
ax.scatter(dfc['st'],dfc['y2011'],c='orangered')
ax.scatter(dfc['st'],dfc['y2012'],c='orangered')
ax.scatter(dfc['st'],dfc['y2013'],c='maroon')
ax.scatter(dfc['st'],dfc['y2014'],c='maroon')
ax.scatter(dfc['st'],dfc['y2015'],c='mediumpurple')
ax.scatter(dfc['st'],dfc['y2016'],c='mediumpurple')
ax.scatter(dfc['st'],dfc['y2017'],c='rebeccapurple')
ax.scatter(dfc['st'],dfc['y2018'],c='rebeccapurple')
Спасибо за любую помощь:)