https://github.com/fer-aguirre/covid19-venezuela
Análisis de datos de muertes por covid-19 en Venezuela
https://github.com/fer-aguirre/covid19-venezuela
covid-19 data-analysis dataviz line-chart
Last synced: about 1 month ago
JSON representation
Análisis de datos de muertes por covid-19 en Venezuela
- Host: GitHub
- URL: https://github.com/fer-aguirre/covid19-venezuela
- Owner: fer-aguirre
- License: mit
- Created: 2022-08-12T01:18:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-20T11:46:13.000Z (almost 2 years ago)
- Last Synced: 2025-02-15T14:50:02.305Z (3 months ago)
- Topics: covid-19, data-analysis, dataviz, line-chart
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Covid19 Venezuela
Análisis de datos de muertes por covid-19 en Venezuela## Directory Structure
---## Directory Structure
```
|- .gitignore # Customized .gitignore for python projects
|- LICENSE # Project's license
|- README.md # Top-level README for this project
|
|- assets # Resources for the project
|
|- data # Categorized data files
| |- processed # Cleaned data
| |- raw # Original data
|
|- docs # Explanatory materials
| |- references # Papers, manuals, articles, etc.
| |- data-dictionary.md # Information about the data
| |- explore-data.md # Questions to explore the data
|
|- notebooks # Jupyter notebooks
| |- 0.0-process.ipynb # Data processing (fixing column types, data cleansing, etc.)
| |- 1.0-analyze.ipynb # Exploratory data analysis
| |- 2.0-visualize.ipynb # Data visualization methods
|
|- outputs # Exports generated by notebooks
| |- tables # Generated pivot tables to analyze data
| |- figures # Generated graphics, maps, etc. to be used in reporting
|
|- project # Python package
| |- __init__.py
| |- data # Functions to manipulate data
| | |- load.py # Module to load data
| | |- process.py # Module to process data
| | |- analyze.py # Module to analyze data
| | |- export.py # Module to save exports
| | |- __init__.py
| |
| |- utils # Functions to make common patterns shorter and easier
| |- paths.py # Module to generate relative paths
| |- __init__.py
|
|- setup.py # Import project as a python module
|
|- Pipfile # Project dependencies
|
|- index.html # HTML template for report analysis
|
|- styles.css # Styles for index.html
```
---## License
This project is released under [MIT License](/LICENSE).
---
This repository was generated with [cookiecutter](https://github.com/cookiecutter/cookiecutter) using a [data-journalism](https://github.com/DataCritica/cookiecutter-data-journalism) template for python.