An open API service indexing awesome lists of open source software.

https://github.com/tahmid-tanzim/exploring-pandas

Learning Pandas ...
https://github.com/tahmid-tanzim/exploring-pandas

data-science pandas python

Last synced: 3 months ago
JSON representation

Learning Pandas ...

Awesome Lists containing this project

README

          

# Exploring Pandas

### 1. Installation and Loading Data
* Pandas
* Jupyter Notebook
```shell
$ python3 -m pip install --upgrade pip
$ python3 -m pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
$ python -m pip install --upgrade pip
$ pip list
$ python -m pip install pandas
$ python -m pip install jupyterlab
$ pip freeze > requirements.txt
$ python -m pip install -r requirements.txt
$ deactivate
```

* Download Data Source - [Stack Overflow Survey 2020](https://insights.stackoverflow.com/survey)

* Start Jupyter Notebook Server
```shell
$ jupyter notebook
```

* Grouping and Aggregating - Analyzing and Exploring Your Data