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:
parent
4cc1fb8b34
commit
d3a6b1296b
11 changed files with 42 additions and 0 deletions
40
02-data/processed/irrelevant/Saleh2018.yml
Normal file
40
02-data/processed/irrelevant/Saleh2018.yml
Normal 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.
|
|
@ -25,6 +25,7 @@ from pathlib import Path
|
||||||
DATA_DIR=Path("./02-data")
|
DATA_DIR=Path("./02-data")
|
||||||
RAW_DATA=DATA_DIR.joinpath("raw")
|
RAW_DATA=DATA_DIR.joinpath("raw")
|
||||||
WORKING_DATA=DATA_DIR.joinpath("intermediate")
|
WORKING_DATA=DATA_DIR.joinpath("intermediate")
|
||||||
|
PROCESSED_DATA=DATA_DIR.joinpath("processed")
|
||||||
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
|
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
|
||||||
|
|
||||||
## standard imports
|
## standard imports
|
||||||
|
|
|
@ -29,6 +29,7 @@ from bibtexparser.model import Field
|
||||||
DATA_DIR=Path("./02-data")
|
DATA_DIR=Path("./02-data")
|
||||||
RAW_DATA=DATA_DIR.joinpath("raw")
|
RAW_DATA=DATA_DIR.joinpath("raw")
|
||||||
WORKING_DATA=DATA_DIR.joinpath("intermediate")
|
WORKING_DATA=DATA_DIR.joinpath("intermediate")
|
||||||
|
PROCESSED_DATA=DATA_DIR.joinpath("processed")
|
||||||
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
|
SUPPLEMENTARY_DATA=DATA_DIR.joinpath("supplementary")
|
||||||
|
|
||||||
## standard imports
|
## standard imports
|
||||||
|
|
Loading…
Reference in a new issue