79630992

Date: 2025-05-20 18:42:57
Score: 1.5
Natty:
Report link

As of plotnine 0.14.5 , I use save():

from plotnine import ggplot, aes, geom_point
from plotnine.data import mtcars

p = (ggplot(mtcars, aes('disp', 'mpg'))
    + geom_point()
)
p.save("scatter.jpg")

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nick Vence