chore(repo): Move extracted yml data to processed dir

Since it has been processed it should reside in the processed dir
This commit is contained in:
Marty Oehme 2023-12-07 12:44:00 +01:00
parent 4cc1fb8b34
commit d3a6b1296b
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
11 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
author: Saleh, M. C., & Bruyere, S. M.
year: 2018
title: Leveraging employer practices in global regulatory frameworks to improve employment outcomes for people with disabilities
publisher: Social Inclusion
uri: https://doi.org/10.17645/si.v6i1.1201
discipline: sociology
country:
period:
maxlength:
targeting:
group:
data:
design:
method:
sample:
unit:
representativeness:
causal: # 0 correlation / 1 causal
theory:
limitations:
observation:
- intervention:
institutional:
structural:
agency:
inequality:
type: # 0 vertical / 1 horizontal
indicator: # 0 absolute / 1 relative
measures:
findings:
channels:
direction: # 0 neg / 1 pos
significance: # 0 nsg / 1 msg / 2 sg
notes:
annotation: |
A global regulatory overview of main barriers and facilitators for a) increasing employment equality for disabled people and b) increasing workplace equality for disabled people.

View file

@ -25,6 +25,7 @@ from pathlib import Path
DATA_DIR=Path("./02-data")
RAW_DATA=DATA_DIR.joinpath("raw")
WORKING_DATA=DATA_DIR.joinpath("intermediate")
PROCESSED_DATA=DATA_DIR.joinpath("processed")
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
## standard imports

View file

@ -29,6 +29,7 @@ from bibtexparser.model import Field
DATA_DIR=Path("./02-data")
RAW_DATA=DATA_DIR.joinpath("raw")
WORKING_DATA=DATA_DIR.joinpath("intermediate")
PROCESSED_DATA=DATA_DIR.joinpath("processed")
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
## standard imports