ports/textproc/quarto/files/example-julia-fig-parametric.qmd
2025-04-06 16:48:06 -07:00

13 lines
176 B
Text

```{julia}
#| label: fig-parametric
#| fig-cap: "Parametric Plots"
using Plots
plot(sin,
x->sin(2x),
0,
2π,
leg=false,
fill=(0,:lavender))
```