├── .gitignore ├── LICENSE ├── README.md ├── austen_plots ├── AustenPlot.py ├── __init__.py ├── math_helpers.py └── plot_helpers.py ├── austen_plots_demo.ipynb ├── data └── imbens-raw │ ├── nsw_control.txt │ ├── nsw_treated.txt │ ├── nswre74_control.txt │ ├── nswre74_treated.txt │ └── psid_controls.txt ├── example_data ├── bootstrap │ ├── bootstrap1 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap10 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap100 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap11 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap12 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap13 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap14 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap15 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap16 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap17 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap18 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap19 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap2 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap20 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap21 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap22 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap23 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap24 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap25 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap26 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap27 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap28 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap29 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap3 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap30 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap31 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap32 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap33 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap34 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap35 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap36 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap37 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap38 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap39 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap4 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap40 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap41 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap42 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap43 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap44 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap45 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap46 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap47 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap48 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap49 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap5 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap50 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap51 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap52 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap53 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap54 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap55 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap56 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap57 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap58 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap59 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap6 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap60 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap61 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap62 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap63 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap64 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap65 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap66 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap67 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap68 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap69 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap7 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap70 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap71 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap72 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap73 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap74 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap75 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap76 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap77 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap78 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap79 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap8 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap80 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap81 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap82 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap83 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap84 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap85 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap86 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap87 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap88 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap89 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap9 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap90 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap91 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap92 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap93 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap94 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap95 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap96 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap97 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ ├── bootstrap98 │ │ ├── covariates │ │ │ ├── age.csv │ │ │ ├── bloodwork.csv │ │ │ ├── sex.csv │ │ │ └── socioeconomic.csv │ │ └── input_df.csv │ └── bootstrap99 │ │ ├── covariates │ │ ├── age.csv │ │ ├── bloodwork.csv │ │ ├── sex.csv │ │ └── socioeconomic.csv │ │ └── input_df.csv ├── covariates │ ├── age.csv │ ├── bloodwork.csv │ ├── sex.csv │ └── socioeconomic.csv ├── input_df.csv └── output │ ├── austen_plot_bootstrap.png │ ├── plot_coords.csv │ └── variable_coords.csv ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/README.md -------------------------------------------------------------------------------- /austen_plots/AustenPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/austen_plots/AustenPlot.py -------------------------------------------------------------------------------- /austen_plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/austen_plots/__init__.py -------------------------------------------------------------------------------- /austen_plots/math_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/austen_plots/math_helpers.py -------------------------------------------------------------------------------- /austen_plots/plot_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/austen_plots/plot_helpers.py -------------------------------------------------------------------------------- /austen_plots_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/austen_plots_demo.ipynb -------------------------------------------------------------------------------- /data/imbens-raw/nsw_control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/data/imbens-raw/nsw_control.txt -------------------------------------------------------------------------------- /data/imbens-raw/nsw_treated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/data/imbens-raw/nsw_treated.txt -------------------------------------------------------------------------------- /data/imbens-raw/nswre74_control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/data/imbens-raw/nswre74_control.txt -------------------------------------------------------------------------------- /data/imbens-raw/nswre74_treated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/data/imbens-raw/nswre74_treated.txt -------------------------------------------------------------------------------- /data/imbens-raw/psid_controls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/data/imbens-raw/psid_controls.txt -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap1/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap1/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap1/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap1/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap1/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap1/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap1/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap1/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap1/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap1/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap10/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap10/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap10/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap10/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap10/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap10/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap10/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap10/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap10/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap10/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap100/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap100/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap100/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap100/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap100/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap100/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap100/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap100/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap100/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap100/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap11/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap11/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap11/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap11/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap11/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap11/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap11/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap11/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap11/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap11/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap12/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap12/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap12/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap12/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap12/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap12/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap12/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap12/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap12/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap12/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap13/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap13/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap13/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap13/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap13/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap13/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap13/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap13/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap13/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap13/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap14/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap14/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap14/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap14/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap14/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap14/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap14/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap14/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap14/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap14/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap15/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap15/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap15/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap15/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap15/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap15/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap15/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap15/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap15/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap15/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap16/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap16/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap16/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap16/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap16/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap16/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap16/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap16/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap16/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap16/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap17/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap17/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap17/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap17/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap17/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap17/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap17/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap17/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap17/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap17/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap18/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap18/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap18/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap18/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap18/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap18/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap18/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap18/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap18/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap18/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap19/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap19/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap19/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap19/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap19/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap19/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap19/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap19/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap19/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap19/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap2/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap2/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap2/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap2/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap2/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap2/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap2/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap2/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap2/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap2/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap20/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap20/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap20/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap20/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap20/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap20/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap20/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap20/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap20/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap20/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap21/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap21/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap21/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap21/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap21/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap21/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap21/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap21/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap21/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap21/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap22/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap22/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap22/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap22/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap22/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap22/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap22/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap22/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap22/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap22/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap23/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap23/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap23/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap23/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap23/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap23/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap23/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap23/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap23/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap23/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap24/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap24/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap24/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap24/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap24/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap24/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap24/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap24/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap24/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap24/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap25/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap25/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap25/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap25/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap25/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap25/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap25/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap25/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap25/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap25/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap26/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap26/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap26/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap26/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap26/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap26/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap26/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap26/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap26/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap26/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap27/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap27/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap27/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap27/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap27/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap27/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap27/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap27/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap27/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap27/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap28/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap28/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap28/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap28/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap28/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap28/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap28/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap28/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap28/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap28/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap29/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap29/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap29/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap29/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap29/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap29/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap29/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap29/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap29/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap29/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap3/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap3/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap3/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap3/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap3/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap3/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap3/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap3/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap3/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap3/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap30/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap30/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap30/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap30/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap30/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap30/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap30/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap30/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap30/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap30/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap31/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap31/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap31/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap31/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap31/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap31/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap31/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap31/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap31/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap31/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap32/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap32/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap32/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap32/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap32/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap32/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap32/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap32/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap32/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap32/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap33/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap33/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap33/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap33/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap33/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap33/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap33/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap33/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap33/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap33/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap34/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap34/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap34/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap34/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap34/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap34/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap34/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap34/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap34/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap34/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap35/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap35/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap35/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap35/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap35/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap35/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap35/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap35/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap35/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap35/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap36/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap36/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap36/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap36/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap36/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap36/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap36/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap36/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap36/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap36/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap37/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap37/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap37/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap37/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap37/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap37/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap37/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap37/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap37/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap37/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap38/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap38/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap38/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap38/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap38/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap38/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap38/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap38/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap38/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap38/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap39/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap39/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap39/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap39/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap39/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap39/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap39/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap39/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap39/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap39/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap4/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap4/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap4/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap4/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap4/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap4/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap4/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap4/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap4/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap4/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap40/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap40/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap40/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap40/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap40/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap40/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap40/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap40/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap40/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap40/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap41/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap41/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap41/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap41/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap41/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap41/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap41/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap41/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap41/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap41/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap42/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap42/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap42/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap42/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap42/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap42/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap42/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap42/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap42/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap42/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap43/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap43/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap43/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap43/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap43/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap43/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap43/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap43/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap43/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap43/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap44/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap44/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap44/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap44/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap44/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap44/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap44/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap44/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap44/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap44/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap45/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap45/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap45/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap45/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap45/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap45/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap45/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap45/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap45/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap45/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap46/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap46/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap46/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap46/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap46/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap46/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap46/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap46/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap46/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap46/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap47/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap47/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap47/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap47/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap47/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap47/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap47/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap47/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap47/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap47/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap48/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap48/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap48/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap48/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap48/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap48/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap48/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap48/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap48/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap48/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap49/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap49/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap49/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap49/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap49/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap49/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap49/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap49/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap49/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap49/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap5/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap5/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap5/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap5/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap5/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap5/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap5/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap5/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap5/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap5/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap50/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap50/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap50/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap50/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap50/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap50/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap50/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap50/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap50/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap50/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap51/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap51/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap51/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap51/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap51/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap51/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap51/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap51/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap51/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap51/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap52/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap52/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap52/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap52/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap52/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap52/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap52/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap52/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap52/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap52/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap53/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap53/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap53/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap53/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap53/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap53/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap53/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap53/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap53/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap53/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap54/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap54/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap54/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap54/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap54/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap54/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap54/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap54/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap54/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap54/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap55/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap55/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap55/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap55/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap55/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap55/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap55/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap55/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap55/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap55/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap56/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap56/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap56/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap56/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap56/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap56/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap56/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap56/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap56/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap56/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap57/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap57/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap57/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap57/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap57/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap57/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap57/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap57/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap57/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap57/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap58/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap58/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap58/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap58/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap58/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap58/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap58/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap58/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap58/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap58/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap59/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap59/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap59/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap59/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap59/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap59/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap59/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap59/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap59/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap59/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap6/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap6/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap6/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap6/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap6/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap6/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap6/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap6/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap6/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap6/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap60/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap60/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap60/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap60/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap60/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap60/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap60/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap60/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap60/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap60/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap61/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap61/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap61/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap61/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap61/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap61/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap61/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap61/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap61/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap61/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap62/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap62/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap62/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap62/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap62/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap62/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap62/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap62/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap62/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap62/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap63/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap63/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap63/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap63/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap63/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap63/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap63/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap63/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap63/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap63/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap64/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap64/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap64/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap64/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap64/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap64/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap64/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap64/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap64/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap64/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap65/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap65/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap65/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap65/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap65/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap65/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap65/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap65/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap65/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap65/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap66/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap66/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap66/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap66/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap66/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap66/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap66/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap66/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap66/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap66/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap67/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap67/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap67/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap67/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap67/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap67/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap67/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap67/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap67/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap67/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap68/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap68/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap68/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap68/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap68/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap68/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap68/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap68/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap68/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap68/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap69/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap69/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap69/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap69/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap69/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap69/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap69/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap69/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap69/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap69/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap7/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap7/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap7/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap7/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap7/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap7/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap7/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap7/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap7/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap7/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap70/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap70/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap70/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap70/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap70/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap70/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap70/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap70/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap70/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap70/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap71/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap71/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap71/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap71/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap71/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap71/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap71/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap71/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap71/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap71/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap72/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap72/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap72/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap72/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap72/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap72/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap72/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap72/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap72/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap72/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap73/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap73/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap73/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap73/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap73/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap73/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap73/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap73/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap73/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap73/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap74/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap74/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap74/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap74/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap74/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap74/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap74/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap74/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap74/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap74/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap75/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap75/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap75/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap75/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap75/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap75/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap75/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap75/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap75/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap75/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap76/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap76/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap76/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap76/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap76/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap76/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap76/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap76/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap76/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap76/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap77/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap77/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap77/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap77/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap77/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap77/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap77/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap77/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap77/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap77/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap78/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap78/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap78/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap78/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap78/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap78/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap78/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap78/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap78/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap78/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap79/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap79/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap79/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap79/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap79/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap79/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap79/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap79/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap79/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap79/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap8/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap8/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap8/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap8/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap8/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap8/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap8/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap8/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap8/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap8/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap80/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap80/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap80/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap80/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap80/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap80/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap80/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap80/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap80/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap80/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap81/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap81/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap81/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap81/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap81/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap81/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap81/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap81/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap81/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap81/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap82/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap82/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap82/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap82/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap82/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap82/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap82/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap82/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap82/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap82/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap83/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap83/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap83/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap83/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap83/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap83/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap83/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap83/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap83/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap83/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap84/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap84/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap84/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap84/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap84/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap84/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap84/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap84/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap84/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap84/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap85/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap85/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap85/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap85/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap85/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap85/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap85/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap85/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap85/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap85/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap86/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap86/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap86/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap86/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap86/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap86/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap86/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap86/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap86/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap86/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap87/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap87/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap87/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap87/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap87/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap87/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap87/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap87/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap87/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap87/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap88/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap88/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap88/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap88/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap88/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap88/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap88/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap88/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap88/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap88/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap89/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap89/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap89/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap89/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap89/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap89/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap89/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap89/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap89/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap89/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap9/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap9/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap9/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap9/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap9/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap9/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap9/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap9/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap9/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap9/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap90/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap90/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap90/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap90/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap90/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap90/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap90/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap90/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap90/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap90/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap91/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap91/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap91/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap91/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap91/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap91/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap91/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap91/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap91/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap91/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap92/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap92/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap92/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap92/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap92/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap92/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap92/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap92/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap92/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap92/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap93/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap93/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap93/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap93/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap93/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap93/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap93/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap93/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap93/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap93/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap94/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap94/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap94/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap94/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap94/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap94/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap94/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap94/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap94/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap94/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap95/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap95/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap95/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap95/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap95/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap95/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap95/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap95/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap95/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap95/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap96/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap96/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap96/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap96/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap96/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap96/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap96/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap96/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap96/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap96/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap97/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap97/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap97/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap97/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap97/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap97/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap97/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap97/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap97/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap97/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap98/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap98/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap98/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap98/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap98/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap98/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap98/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap98/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap98/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap98/input_df.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap99/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap99/covariates/age.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap99/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap99/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap99/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap99/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap99/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap99/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/bootstrap/bootstrap99/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/bootstrap/bootstrap99/input_df.csv -------------------------------------------------------------------------------- /example_data/covariates/age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/covariates/age.csv -------------------------------------------------------------------------------- /example_data/covariates/bloodwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/covariates/bloodwork.csv -------------------------------------------------------------------------------- /example_data/covariates/sex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/covariates/sex.csv -------------------------------------------------------------------------------- /example_data/covariates/socioeconomic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/covariates/socioeconomic.csv -------------------------------------------------------------------------------- /example_data/input_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/input_df.csv -------------------------------------------------------------------------------- /example_data/output/austen_plot_bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/output/austen_plot_bootstrap.png -------------------------------------------------------------------------------- /example_data/output/plot_coords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/output/plot_coords.csv -------------------------------------------------------------------------------- /example_data/output/variable_coords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/example_data/output/variable_coords.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishazaveri/austen_plots/HEAD/setup.py --------------------------------------------------------------------------------