├── .gitignore ├── EXAMPLE_facebook_config.yml ├── Instructions_to_obtain_FB_Ad_Manager_Credentials.pdf ├── LICENSE ├── README.md ├── Zagheni_et_al_IUSSP_2017_FB_ads.pdf ├── facebook_ads.R ├── facebook_ads.Rproj ├── facebook_ads.pdf ├── facebook_ads_intro.Rmd ├── facebook_ads_intro.pdf └── targeting_specs ├── targeting_spec_00.json ├── targeting_spec_01.json ├── targeting_spec_02.json ├── targeting_spec_03.json └── targeting_spec_us_states.json /.gitignore: -------------------------------------------------------------------------------- 1 | facebook_config.yml 2 | .Rproj.user 3 | -------------------------------------------------------------------------------- /EXAMPLE_facebook_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/EXAMPLE_facebook_config.yml -------------------------------------------------------------------------------- /Instructions_to_obtain_FB_Ad_Manager_Credentials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/Instructions_to_obtain_FB_Ad_Manager_Credentials.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/README.md -------------------------------------------------------------------------------- /Zagheni_et_al_IUSSP_2017_FB_ads.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/Zagheni_et_al_IUSSP_2017_FB_ads.pdf -------------------------------------------------------------------------------- /facebook_ads.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/facebook_ads.R -------------------------------------------------------------------------------- /facebook_ads.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/facebook_ads.Rproj -------------------------------------------------------------------------------- /facebook_ads.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/facebook_ads.pdf -------------------------------------------------------------------------------- /facebook_ads_intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/facebook_ads_intro.Rmd -------------------------------------------------------------------------------- /facebook_ads_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/facebook_ads_intro.pdf -------------------------------------------------------------------------------- /targeting_specs/targeting_spec_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/targeting_specs/targeting_spec_00.json -------------------------------------------------------------------------------- /targeting_specs/targeting_spec_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/targeting_specs/targeting_spec_01.json -------------------------------------------------------------------------------- /targeting_specs/targeting_spec_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/targeting_specs/targeting_spec_02.json -------------------------------------------------------------------------------- /targeting_specs/targeting_spec_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/targeting_specs/targeting_spec_03.json -------------------------------------------------------------------------------- /targeting_specs/targeting_spec_us_states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/r-estimates-fb-ads/HEAD/targeting_specs/targeting_spec_us_states.json --------------------------------------------------------------------------------