Skip to content

Plotly

PyConsole supports visualization with plotly

Usage

Steps

  1. import plotly
python
import plotly.express as px
  1. make a plot
python
df = px.data.tips()
fig = px.parallel_categories(df, color="size", color_continuous_scale=px.colors.sequential.Inferno)
  1. show the plot with fig.show
python
fig.show()

plotly example