Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenvilar/data-analysis-using-python
Transforming a description of a location from an analyzed CSV file data using Pandas with Python 3
https://github.com/kenvilar/data-analysis-using-python
bs4 data-analysis jupyter pandas python python3 requests xlrd
Last synced: about 2 months ago
JSON representation
Transforming a description of a location from an analyzed CSV file data using Pandas with Python 3
- Host: GitHub
- URL: https://github.com/kenvilar/data-analysis-using-python
- Owner: kenvilar
- Created: 2017-11-13T09:17:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T08:20:39.000Z (6 months ago)
- Last Synced: 2024-07-16T10:48:06.787Z (6 months ago)
- Topics: bs4, data-analysis, jupyter, pandas, python, python3, requests, xlrd
- Language: Jupyter Notebook
- Homepage:
- Size: 76.2 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# data-analysis-using-python
Organizing, cleaning, modeling, and analyzing data in Python using Pandas## Getting Started
* Install python3
* Install pip and setuptools and upgrade them using this command
```
pip3 install -U pip setuptools
```
* Create own virtual environment using these commands
````
python3 -m venv
source /bin/activate
````
* Auto generate requirements.txt
```
pip3 list --not-required --format=freeze > requirements.txt
```
* To install packages from requirements.txt file
```
pip3 install -r requirements.txt
```
* To run jupyter notebook
```
jupyter notebook
```## Installations
* Install pandas -- pip3 install pandas
* Install jupyter -- pip3 install jupyter
* Install xlrd -- pip3 install xlrd
* Install geopy -- pip3 install geopy
* Install bs4 -- pip3 install bs4 (This is optional. This will parse a document into a tree representation.)
* Install requests -- pip3 install requests (This is optional. This will requests http library.)
* Install pipdeptree -- pip3 install pipdeptree (This is optional. It will displays dependencies as a tree structure.)