Almenon / Almenon/AREPL-vscode
bokeh support
- Langage dominant
- TypeScript
- Étoiles
- 301
- Forks
- 46
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Not sure how I would do this. The following code opens a graph in the browser:
Specifically "file:///C:/dev/AREPL-vscode/node_modules/arepl-backend/python/python_evaluator.html"
```python
from bokeh.plotting import figure, output_file, show
x = [1,2,3,4,3]
y = [6,7,2,4,5]
#output_file("lines.html")
p = figure(title="simple line example", x_axis_label='x', y_axis_label='y')
p.line(x, y, legend="Temp.", line_width=2)
show(p)
```
So it should be possible to render it in arepl instead.... but not sure how I would do that :/
https://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html#getting-started
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.