plotly
- Basic Plots with Plotly Express¶Ha Khanh Nguyen (hknguyen)
conda install plotly
pip install plotly
px.scatter()
, each data point is represented as a marker point, whose location is given by the x
and y
columns.import plotly.express as px
fig = px.scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16])
fig.show()