使用plotnine包时出现问题,并退出Keyerror :: KeyError:'reds'

时间:2020-07-03 09:30:17

标签: python plotnine

我正在尝试使用plotnine来构建图形,并且在我想要绘制时不断遇到相同的KeyError问题。请参阅下面的回溯错误。 KeyError:“红色”

我的关键代码如下:

p6=(ggplot(df, aes(x='SOD',y='tau',fill='age',size='age')) + 
    geom_point(shape='o',color="black",stroke=0.25,alpha=0.8)+
         scale_size(range = (1, 8))+
         scale_fill_distiller(type='seq', palette='reds') +
         theme(text=element_text(size=12,colour = "black"),
    aspect_ratio =1,
    dpi=100,
   figure_size=(4,4))) #shape=21,color="black",fill="red",size=3,stroke=0.1
print(p6)

0 个答案:

没有答案