Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fer-aguirre/cookiecutter-data-analysis-lite

A starter template for data analysis projects that offers a simplified and beginner-friendly structure.
https://github.com/fer-aguirre/cookiecutter-data-analysis-lite

cookiecutter data-analysis project-template python

Last synced: 9 days ago
JSON representation

A starter template for data analysis projects that offers a simplified and beginner-friendly structure.

Awesome Lists containing this project

README

        

# Cookiecutter Data Analysis Lite 🐝

A starter [cookiecutter](https://github.com/cookiecutter/cookiecutter) template for data analysis projects that offers a simplified and beginner-friendly structure.

---

## Directory Structure
```

├─ .gitignore # Customized .gitignore for python projects
├─ LICENSE # Project's license
├─ pyproject.toml # Project dependencies
├─ README.md # Top-level README for this project
|
├─ assets # Resources for the project
|
├─ data # Categorized data files
| ├─ processed # Cleaned data
| └─ raw # Original data
|
├─ notebooks # Jupyter notebooks
| ├─ 0.0-collect-data.ipynb # Gathering data
| ├─ 1.0-process-data.ipynb # Data processing (fixing column types, data cleansing, etc.)
| ├─ 2.0-analyze-data.ipynb # Exploratory data analysis
| └─ 3.0-visualize-data.ipynb # Data visualization methods
|
├─ outputs # Exports generated by notebooks
| ├─ figures # Generated graphics, maps, etc. to be used in reporting
| └─ tables # Generated pivot tables to analyze data
|

```
---