-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72f6153
commit a707db8
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
global-api/importer/argentinian_datasets/indec_industrial_products/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Industrial Products Statistics - INDEC | ||
|
||
This program allows obtaining local production series of selected industrial goods, in physical units. | ||
The information originates from different sources: INDEC's own surveys, data from other government agencies and information from business institutions. In the case of some products (wine, beer, soft drinks, cigarettes, cement, boats), to make up for the lack of production statistics or to complement them, figures for registrations, sales or shipments of national products are recorded. | ||
|
||
1. Extract the raw data from the source [INDEC](https://www.indec.gob.ar/indec/web/Nivel4-Tema-3-6-18): | ||
```bash | ||
python ./extraction.py | ||
``` | ||
2. Clean the raw data: | ||
```bash | ||
python ./clean_raw_data.py | ||
``` | ||
3. Load the cleaned raw data into a new table: | ||
[....] | ||
|
||
### Directory tree | ||
```sh | ||
. | ||
├── README.md # top level readme | ||
├── extraction.py # extraction script | ||
├── clean_raw_data.py # transformation script | ||
└── loading_raw_data.py # loading script | ||
``` |