Skip to content

Commit 97e6898

Browse files
committed
01_tools.ipynb: Add iGraph to the list of tools
iGraph is a library collection for creating and manipulating graphs and analyzing networks. It is written in C and also exists as Python and R packages. Mentioned as one of possibilities in the Dmitry Zinoviev's talk titled "Complex networks and their analysis in Python", filmed during the codebar Literary Festival in collaboration with The Pragmatic Bookshelf on Wednesday 23rd June 2021: https://www.youtube.com/watch?v=4SdYpv57fxQ
1 parent cd3c88e commit 97e6898

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

01_tools.ipynb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,30 @@
107107
" - numpy and scipy for numerical and scientific computing"
108108
]
109109
},
110+
{
111+
"cell_type": "markdown",
112+
"metadata": {},
113+
"source": [
114+
"<!-- ![igraph-logo](https://igraph.org/img/igraph_logo_black.svg) -->\n",
115+
"<img src=\"https://igraph.org/img/igraph_logo_black.svg\" width=\"20%\" />\n",
116+
"\n",
117+
"- [iGraph](https://igraph.org/) is a collection of network analysis tools with the emphasis on **efficiency**, **portability** and ease of use.\n",
118+
" - [open source](https://github.com/igraph) and free\n",
119+
" - the source code of igraph packages is written in C\n",
120+
" - can be programmed in \n",
121+
" [Python](https://igraph.org/python),\n",
122+
" [R](https://igraph.org/r),\n",
123+
" [Mathematica](http://szhorvat.net/mathematica/IGraphM),\n",
124+
" and [C/C++](https://igraph.org/c)\n",
125+
" - python-igraph documentation:\n",
126+
" [User's Manual with Tutorial](https://igraph.org/python/doc/tutorial/),\n",
127+
" [API reference](https://igraph.org/python/doc/api/index.html)\n",
128+
" - supports inline plots within a Jupyter notebook via both the Cairo and matplotlib backend\n",
129+
" - you can generate graph from edges stored in a _pandas.DataFrame_\n",
130+
" - capable of handling large networks efficiently\n",
131+
" - interactive and non-interactive usage are both supported"
132+
]
133+
},
110134
{
111135
"cell_type": "markdown",
112136
"metadata": {},

0 commit comments

Comments
 (0)