UChicago-pol-methods / banditsCI

packages setup for adaptively weighted confidence intervals
MIT License
1 stars 0 forks source link

Getting started with CI code #8

Closed mollyow closed 1 year ago

mollyow commented 1 year ago

Getting started with GitHub

Getting started with bandits code

AmirWilliams commented 1 year ago

Variables:

(xs):Covariates. All the variables that predict outcomes. Features of individuals. Associates with ys. There will be a matrix as long as A and as wide as p. xs affect ys

muxs: Output if there were no noise. Shape A by k. Xs and Ys are related. If everyone were the genetically identical, then they would have the same muxs, but not necessarily the same ys.

underlying truth

(ys): Potential outcomes. Shape A by k. Muxs plus random noise.

(yobs) This is the output that researchers ultimately evaluate. More noise

(A): Number of subjects (1000, usually)

(P): Number of covariates (5, in current version of code)

(K): Number of variables. In this case treatments (4, in current version of code)

mollyow commented 1 year ago

Break this into arguments that go into line 54, and the sub-components of the results object.

AmirWilliams commented 1 year ago

Assessing the arguments and outputs of: results <- run_experiment(ys, floor_start, floor_decay, batch_sizes, xs)