Skip to content

Commit ee9f6ff

Browse files
committed
regression test
1 parent 4dde4b9 commit ee9f6ff

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
format: typst
3+
---
4+
5+
6+
::: {.cell execution_count=1}
7+
``` {.python .cell-code}
8+
from plotnine import ggplot, geom_point, aes, stat_smooth, facet_wrap
9+
from plotnine.data import mtcars
10+
11+
(
12+
ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
13+
+ geom_point()
14+
+ stat_smooth(method="lm")
15+
+ facet_wrap("gear")
16+
)
17+
```
18+
19+
::: {.cell-output .cell-output-display}
20+
![](10217_files/figure-typst/cell-2-output-1.png){width=640 height=480}
21+
:::
22+
:::
23+
24+
67.9 KB
Loading

0 commit comments

Comments
 (0)