You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plotly's Python library is free and open source! [Get started](https://plot.ly/python/getting-started/) by downloading the client and [reading the primer](https://plot.ly/python/getting-started/).
32
-
<br>You can set up Plotly to work in [online](https://plot.ly/python/getting-started/#initialization-for-online-plotting) or [offline](https://plot.ly/python/getting-started/#initialization-for-offline-plotting) mode, or in [jupyter notebooks](https://plot.ly/python/getting-started/#start-plotting-online).
33
-
<br>We also have a quick-reference [cheatsheet](https://images.plot.ly/plotly-documentation/images/python_cheat_sheet.pdf) (new!) to help you get started!
Note: Gantt Charts are available in version <b>1.12.2+</b><br>
39
-
Run `pip install plotly --upgrade` to update your Plotly version
40
-
<!-- #endregion -->
41
-
42
-
```python deletable=true editable=true
43
-
import plotly
44
-
plotly.__version__
45
-
```
40
+
A [Gantt chart](https://en.wikipedia.org/wiki/Gantt_chart) is a type of bar chart that illustrates a project schedule. The chart lists the tasks to be performed on the vertical axis, and time intervals on the horizontal axis. The width of the horizontal bars in the graph shows the duration of each activity.
41
+
42
+
See also the [bar charts examples](https://plot.ly/python/bar-charts/).
Copy file name to clipboardExpand all lines: notebooks/network-graphs.md
+15-52Lines changed: 15 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
---
2
2
jupyter:
3
3
jupytext:
4
+
notebook_metadata_filter: all
4
5
text_representation:
5
6
extension: .md
6
7
format_name: markdown
@@ -26,46 +27,29 @@ jupyter:
26
27
thumbnail: thumbnail/net.jpg
27
28
---
28
29
29
-
#### New to Plotly?
30
-
Plotly's Python library is free and open source! [Get started](https://plot.ly/python/getting-started/) by downloading the client and [reading the primer](https://plot.ly/python/getting-started/).
31
-
<br>You can set up Plotly to work in [online](https://plot.ly/python/getting-started/#initialization-for-online-plotting) or [offline](https://plot.ly/python/getting-started/#initialization-for-offline-plotting) mode, or in [jupyter notebooks](https://plot.ly/python/getting-started/#start-plotting-online).
32
-
<br>We also have a quick-reference [cheatsheet](https://images.plot.ly/plotly-documentation/images/python_cheat_sheet.pdf) (new!) to help you get started!# Network Graphs with Plotly.
30
+
In this example we show how to visualize a network graph created using `networkx`.
33
31
34
-
Install the Python library `networkx` with `sudo pip install networkx`.
32
+
Install the Python library `networkx` with `pip install networkx`.
35
33
36
34
37
-
#### Get Node Positions
38
-
Store position as node attribute data for random_geometric_graph and find node near center (0.5, 0.5)
0 commit comments