diff --git a/plots/letsplot/line/line-basic/default.py b/plots/letsplot/line/line-basic/default.py index 70bc38ee6b..bedd1dafbb 100644 --- a/plots/letsplot/line/line-basic/default.py +++ b/plots/letsplot/line/line-basic/default.py @@ -28,12 +28,12 @@ plot = ( ggplot(data, aes(x="time", y="value")) + geom_line(color="#306998", size=2) - + geom_point(color="#306998", size=4) + + geom_point(color="#306998", size=4, alpha=0.8) + labs(x="Time", y="Value", title="Basic Line Plot") + theme_minimal() + theme(plot_title=element_text(size=20), axis_title=element_text(size=20), axis_text=element_text(size=16)) + ggsize(1600, 900) ) -# Save - scale 3x to get 4800 x 2700 px +# Save (scale 3x to get 4800 × 2700 px) ggsave(plot, "plot.png", path=".", scale=3)