From 0ea0c75dd3aa9e2d994bb68da0d0ab6802a2cc3e Mon Sep 17 00:00:00 2001 From: "J.J. Allaire" Date: Tue, 24 Oct 2023 07:51:48 -0400 Subject: [PATCH] julia example --- docs/dashboards/_examples/julia/julia-plotly.qmd | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/dashboards/_examples/julia/julia-plotly.qmd diff --git a/docs/dashboards/_examples/julia/julia-plotly.qmd b/docs/dashboards/_examples/julia/julia-plotly.qmd new file mode 100644 index 000000000..dfc4353e4 --- /dev/null +++ b/docs/dashboards/_examples/julia/julia-plotly.qmd @@ -0,0 +1,15 @@ +--- +title: "Julia Plotly" +format: dashboard +--- + + +```{julia} +using Plots +plot(sin, + x->sin(3x), + 0, + 2π, + leg=false, + fill=(0,:lavender)) +``` \ No newline at end of file