We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc54b03 commit a947457Copy full SHA for a947457
1 file changed
plots/letsplot/line/line-basic/default.py
@@ -28,12 +28,12 @@
28
plot = (
29
ggplot(data, aes(x="time", y="value"))
30
+ geom_line(color="#306998", size=2)
31
- + geom_point(color="#306998", size=4)
+ + geom_point(color="#306998", size=4, alpha=0.8)
32
+ labs(x="Time", y="Value", title="Basic Line Plot")
33
+ theme_minimal()
34
+ theme(plot_title=element_text(size=20), axis_title=element_text(size=20), axis_text=element_text(size=16))
35
+ ggsize(1600, 900)
36
)
37
38
-# Save - scale 3x to get 4800 x 2700 px
+# Save (scale 3x to get 4800 × 2700 px)
39
ggsave(plot, "plot.png", path=".", scale=3)
0 commit comments