mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
13 lines
176 B
Text
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))
|
|
```
|