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 ...
- Host: GitHub
- URL: https://github.com/tahmid-tanzim/exploring-pandas
- Owner: tahmid-tanzim
- Created: 2015-08-24T11:18:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T23:49:46.000Z (over 3 years ago)
- Last Synced: 2025-02-13T08:39:16.221Z (over 1 year ago)
- Topics: data-science, pandas, python
- Language: Jupyter Notebook
- Homepage: https://pandas.pydata.org/
- Size: 8.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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