We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d2667 commit 7813350Copy full SHA for 7813350
README.md
@@ -1,5 +1,26 @@
1
# plotly.py
2
3
+## Quickstart
4
+
5
+`pip install plotly`
6
7
+Inside [Jupyter notebook](https://jupyter.org/install):
8
+```
9
+import plotly.graph_objs as go
10
+fig = go.FigureWidget()
11
+# Display an empty figure
12
+fig
13
14
+# Add a scatter chart
15
+fig.add_scatter(y=[2, 1, 4, 3])
16
+# Add a bar chart
17
+fig.add_bar(y=[1, 4, 3, 2])
18
+# Add a title
19
+fig.layout.title = 'Hello FigureWidget'
20
21
22
+See the [Python documentation](https://plot.ly/python/) for more examples.
23
24
## Overview
25
[plotly.py](https://plot.ly/d3-js-for-python-and-pandas-charts/) is an interactive, browser-based graphing library for Python :sparkles:
26
0 commit comments