File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed
docs/get-started/hello/_positron/python Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,16 @@ The `penguins` data contains size measurements for `{python} len(penguins)` peng
2323#| warning: false
2424#| echo: false
2525
26- (ggplot(penguins,
27- aes(x='flipper_length_mm', y='bill_length_mm')) +
28- geom_point(aes(color='species', shape='species')) +
29- scale_color_manual(values=["#FF8C00","#A020F0","#008B8B"]) +
30- labs(
31- x="Flipper length (mm)", y="Bill length (mm)",
32- color="Penguin species", shape="Penguin species"
33- ) +
34- theme_minimal())
26+ (
27+ ggplot(penguins, aes(x="flipper_length_mm", y="bill_length_mm"))
28+ + geom_point(aes(color="species", shape="species"))
29+ + scale_color_manual(values=["#FF8C00", "#A020F0", "#008B8B"])
30+ + labs(
31+ x="Flipper length (mm)",
32+ y="Bill length (mm)",
33+ color="Penguin species",
34+ shape="Penguin species",
35+ )
36+ + theme_minimal()
37+ )
3538```
You can’t perform that action at this time.
0 commit comments