summaryrefslogtreecommitdiff
path: root/textproc/quarto/files/example-julia-fig-parametric.qmd
blob: 6f4a49fde3cf7d8b7408ba4c4fbdfeff008dfd1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
```{julia}
#| label: fig-parametric
#| fig-cap: "Parametric Plots"

using Plots

plot(sin, 
     x->sin(2x), 
     0, 
     2π, 
     leg=false, 
     fill=(0,:lavender))
```