When I try to plot something in VS-Code.
fig = go.Figure()
fig.add_scatter(x=xs, y=X)
fig.show(renderer='vscode')
no plot is being displayed, only some metadata is shown in the terminal.
I know I can use fig.show()
and have the figure appear in the browser, but what is the vscode
renderer for?