# JupyterLab vs PlotlyJS

**URL:** https://discourse.julialang.org/t/jupyterlab-vs-plotlyjs/92173
**Category:** Jupyter-Notebook
**Created:** [December 27, 2022, 12:14am UTC](https://discourse.julialang.org/t/jupyterlab-vs-plotlyjs/92173 "2022-12-27T00:14:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rmfritz](https://avatars.discourse-cdn.com/v4/letter/r/b487fb/32.png) [@rmfritz](https://discourse.julialang.org/u/rmfritz)
#### Post date: [December 27, 2022, 12:14am UTC](https://discourse.julialang.org/t/jupyterlab-vs-plotlyjs/92173/1 "2022-12-27T00:14:46Z")

</div>

The following example works fine in the julia REPL, but only produces an empty cell in IJulia under JupyterLab. I’ve done a couple of installs I found on the net, and none of them worked. Any ideas about what to try?

```julia
using IESLM63
using PlotlyJS
cv = Float32[0.0, 128.597, 145.57745, 145.57745, 145.57745, 145.57745, 145.57745, 145.57745, 145.57745, 128.597, 0.0];
va = Float32[0.0, 18.0, 36.0, 54.0, 72.0, 90.0, 108.0, 126.0, 144.0, 162.0, 180.0];
fig1 = Plot(scatterpolar(r = cv,
                         theta = va,
                         mode = "markers+lines"),
            Layout(font_size=10,
                   width=400, height=400, 
                   polar=attr(angularaxis_rotation=270)))

```
