我正在尝试使用 plotnine 来构建图表,并且在我想要绘图时不断遇到相同的 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)