/taxis_analysis

Primary LanguageJupyter Notebook

Taxis analysis

Goals

  • Find the most profitable time of the day to work and location to work.
  • Do general analysis
project/
├── data/
│ ├── raw/
│ ├── processed/
│ └── interim/
├── notebooks/
├── scripts/
├── output/
├── README.md
└── requirements.txt

data/ folder

  • raw/ folder: This folder contains the original data files without any processing.
  • processed/ folder: This folder contains the cleaned and processed data files. This folder should not be modified manually, but should be updated using scripts.
  • interim/ folder: This folder contains any intermediate data files that are generated during the analysis.

notebooks/ folder

This folder contains all the Jupyter notebooks used for the analysis. Each notebook should be named descriptively, and the naming convention should be consistent across all notebooks.

scripts/ folder

This folder contains all the Python scripts used in the analysis. Each script should be named descriptively, and the naming convention should be consistent across all scripts.

output/ folder

This folder contains any output files generated by the analysis, such as visualizations or reports.

README.md file

This file should contain a brief description of the project, including the purpose of the analysis, the data used, and any important information about the analysis process.