Closed NataliaDelCoco closed 2 years ago
The size=0.1
of lines is too small and the image is rasterized so that is probably antialiasing gone wrong. If you save the plot in a vector format like pdf, you should get better results. Or you could increase the dpi
so some large value e.g. + theme(dpi=300)
, though I rarely find it helpful to mess with the dpi.
Hi! When using
geom_error
orgeom_errorh
from plotnine version 0.7.1, I understood the attributesize
should change the error bar hat size (default = 0.5). Instead, it works likealpha
attributive.The code with
size = 0.1
results in:
Now, with
size = 1
:The
alpha
attribute works as expected.