Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnkun136nvcp/network-science_tsfc_unam
Introducción a la Ciencia de Redes usando Python
https://github.com/johnkun136nvcp/network-science_tsfc_unam
beginner-project network network-analysis no-robar-xd python unam
Last synced: 10 days ago
JSON representation
Introducción a la Ciencia de Redes usando Python
- Host: GitHub
- URL: https://github.com/johnkun136nvcp/network-science_tsfc_unam
- Owner: JohnKun136NVCP
- License: mit
- Created: 2022-02-17T21:57:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T00:22:59.000Z (8 months ago)
- Last Synced: 2024-03-17T05:46:17.157Z (8 months ago)
- Topics: beginner-project, network, network-analysis, no-robar-xd, python, unam
- Language: Jupyter Notebook
- Homepage:
- Size: 18.3 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction to Network Science.
# Requirements 📖
* [Igraph](https://igraph.org/)
* [NetworkX](https://networkx.org/)
* [Python 3](https://docs.python.org/3/)
* [Matplotlib](https://matplotlib.org/) or [Seaborn](https://seaborn.pydata.org/)
* [Pandas](https://pandas.pydata.org/)## Instalar requerimientos (Fast) ⚡
```python
pip install -r requirements.txt
```## How to install? ⁉️
### Igraph
```python
pip3 install igraph
```
### NetworkX
```python
pip3 install networkx[default]
```
### Matplotlib
```python
pip3 install matplotlib
```
### Seaborn
```python
pip3 install seaborn
```
### Pandas
```python
pip3 install pandas
```# Colaboración con 👥
* [Sergio Alcalá](https://github.com/saac)
* [Sergio Sánchez](https://github.com/pachichi)# Biblografía 📚
* [Linked: How Everything Is Connected to Everything Else and What It Means for Business, Science, and Everyday Life (English Edition)](https://www.amazon.com.mx/gp/product/B06XC9JM6Y/ref=dbs_a_def_rwt_bibl_vppi_i1)
* [Network Science](https://www.amazon.com.mx/gp/product/1107076269/ref=dbs_a_def_rwt_bibl_vppi_i6)
* Both books you can buy them online. However, [*Network Science*](http://networksciencebook.com/chapter/1) is online if you don't want to buy it.
* There will be some notes about every chapter about the book *Linked*. You can find it in *Notes' section*.