Refresh CIS Barómetros README
Browse files
spain/barometro_cis/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CIS Barómetros — processed dataset
|
| 2 |
+
|
| 3 |
+
Tidy, month-indexed Parquet produced by the pipeline at
|
| 4 |
+
<https://github.com/victoriano/social-sciences-microdata>.
|
| 5 |
+
|
| 6 |
+
## Files
|
| 7 |
+
|
| 8 |
+
- `processed_barometros.parquet` — one row per respondent, columns in
|
| 9 |
+
Spanish (variable labels from the CIS SPSS metadata). Includes a
|
| 10 |
+
monthly `date_of_study` rebuilt via the catalogue index.
|
| 11 |
+
- `barometros_index.csv` — the catalogue entry for every estudio the
|
| 12 |
+
pipeline considered, including slug and download date.
|
| 13 |
+
|
| 14 |
+
## Quick start
|
| 15 |
+
|
| 16 |
+
```python
|
| 17 |
+
from huggingface_hub import hf_hub_download
|
| 18 |
+
import pandas as pd
|
| 19 |
+
|
| 20 |
+
path = hf_hub_download(
|
| 21 |
+
repo_id="victoriano/social-sciences-microdata",
|
| 22 |
+
filename="spain/barometro_cis/processed_barometros.parquet",
|
| 23 |
+
repo_type="dataset",
|
| 24 |
+
)
|
| 25 |
+
df = pd.read_parquet(path)
|
| 26 |
+
```
|