├── .gitignore ├── data ├── FV15_data.csv ├── groups.csv ├── marijuana-street-price-clean.csv ├── participants.xlsx ├── politiken.csv ├── sds-survey-1.csv ├── sds-survey-2.csv └── sds-survey-3.csv ├── plots └── marijouana.png └── scripts ├── analyze_surveys.R ├── clean_survey_1.R ├── exercise_1 └── marijuana.R ├── facebook.R └── gen_groups.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/.gitignore -------------------------------------------------------------------------------- /data/FV15_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/FV15_data.csv -------------------------------------------------------------------------------- /data/groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/groups.csv -------------------------------------------------------------------------------- /data/marijuana-street-price-clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/marijuana-street-price-clean.csv -------------------------------------------------------------------------------- /data/participants.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/participants.xlsx -------------------------------------------------------------------------------- /data/politiken.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/politiken.csv -------------------------------------------------------------------------------- /data/sds-survey-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/sds-survey-1.csv -------------------------------------------------------------------------------- /data/sds-survey-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/sds-survey-2.csv -------------------------------------------------------------------------------- /data/sds-survey-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/data/sds-survey-3.csv -------------------------------------------------------------------------------- /plots/marijouana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/plots/marijouana.png -------------------------------------------------------------------------------- /scripts/analyze_surveys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/scripts/analyze_surveys.R -------------------------------------------------------------------------------- /scripts/clean_survey_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/scripts/clean_survey_1.R -------------------------------------------------------------------------------- /scripts/exercise_1/marijuana.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/scripts/exercise_1/marijuana.R -------------------------------------------------------------------------------- /scripts/facebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/scripts/facebook.R -------------------------------------------------------------------------------- /scripts/gen_groups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbarfort/sds/HEAD/scripts/gen_groups.R --------------------------------------------------------------------------------