File size: 1,041 Bytes
1721aea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Here we set all the hyperparams for the synthetic data and define base directories

export BASE_FOLDER="reproduce_results/samples/synthetic"

## dataset sizes
export RCT_SIZE=10
export MULTI_RCT_SIZE=5
export FRONTDOOR_SIZE=5
export CANONICAL_DID_SIZE=5
export TWFE_DID_SIZE=5
export OBSERVATIONAL_SIZE=5
export IV_SIZE=5
export ENCOURAGEMENT_SIZE=5
export RDD_SIZE=5
export DEFAULT_SIZE=2

## number of observations
export MIN_OBS=300
export MAX_OBS=500
export DEFAULT_OBS=1000
export DEFAULT_OBS_TWFE=100
export MIN_OBS_TWFE=50
export MAX_OBS_TWFE=100

## maximum number of treatments for multi RCT
export MAX_TREATMENTS=5

## maximum number of periods for TWFE
export MAX_PERIODS=10

## maximum number of covariates
export N_CONTINUOUS=5
export N_CONTINUOUS_MULTI=2
export N_CONTINUOUS_FRONTDOOR=3
export N_CONTINUOUS_DID_CANONICAL=2
export N_CONTINUOUS_DID_TWFE=2
export N_CONTINUOUS_IV=4
export N_CONTINUOUS_IV_ENCOURAGEMENT=3
export N_CONTINUOUS_RDD=2

export N_BINARY=4
export N_BINARY_OTHERS=3

## cutoff for RDD
export CUTOFF=25