├── .gitignore ├── LICENSE ├── README.html ├── README.md ├── apis_and_webscraping ├── 1_httr_facebook_api.R ├── 2_httr_twitter_api.R ├── 3_httr_gcp_ml_api.R ├── 4_rvest_realestatecomau.R ├── 5_reselenium_core_logic_web_driving.R ├── 6_rvest_and_rselenium_twitter_endless_scroll.R └── data │ ├── bike.png │ ├── gcp_nlp_ex_1.json │ ├── gcp_nlp_ex_2.json │ └── gcp_vision_ex_1.json └── surf_talk_201903_attribution ├── R ├── 01_google_merchandise_store_demo.Rmd ├── 01_google_merchandise_store_demo.nb.html ├── 01_google_merchandise_store_demo.pdf ├── 02_fractribution_model_quick_start.Rmd ├── 02_fractribution_model_quick_start.nb.html ├── 02_fractribution_model_quick_start.pdf ├── 03_attribution_fit_details.Rmd ├── 03_attribution_fit_details.nb.html ├── 03_attribution_fit_details.pdf ├── 10_channelattribution_overview.Rmd ├── 10_channelattribution_overview.nb.html └── 10_channelattribution_overview.pdf ├── digital_marketing_attribution_modelling_in_r.pdf └── surf_talk_201903_attribution.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/LICENSE -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/README.md -------------------------------------------------------------------------------- /apis_and_webscraping/1_httr_facebook_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/1_httr_facebook_api.R -------------------------------------------------------------------------------- /apis_and_webscraping/2_httr_twitter_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/2_httr_twitter_api.R -------------------------------------------------------------------------------- /apis_and_webscraping/3_httr_gcp_ml_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/3_httr_gcp_ml_api.R -------------------------------------------------------------------------------- /apis_and_webscraping/4_rvest_realestatecomau.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/4_rvest_realestatecomau.R -------------------------------------------------------------------------------- /apis_and_webscraping/5_reselenium_core_logic_web_driving.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/5_reselenium_core_logic_web_driving.R -------------------------------------------------------------------------------- /apis_and_webscraping/6_rvest_and_rselenium_twitter_endless_scroll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/6_rvest_and_rselenium_twitter_endless_scroll.R -------------------------------------------------------------------------------- /apis_and_webscraping/data/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/data/bike.png -------------------------------------------------------------------------------- /apis_and_webscraping/data/gcp_nlp_ex_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/data/gcp_nlp_ex_1.json -------------------------------------------------------------------------------- /apis_and_webscraping/data/gcp_nlp_ex_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/data/gcp_nlp_ex_2.json -------------------------------------------------------------------------------- /apis_and_webscraping/data/gcp_vision_ex_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/apis_and_webscraping/data/gcp_vision_ex_1.json -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/01_google_merchandise_store_demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/01_google_merchandise_store_demo.Rmd -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/01_google_merchandise_store_demo.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/01_google_merchandise_store_demo.nb.html -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/01_google_merchandise_store_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/01_google_merchandise_store_demo.pdf -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/02_fractribution_model_quick_start.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/02_fractribution_model_quick_start.Rmd -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/02_fractribution_model_quick_start.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/02_fractribution_model_quick_start.nb.html -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/02_fractribution_model_quick_start.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/02_fractribution_model_quick_start.pdf -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/03_attribution_fit_details.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/03_attribution_fit_details.Rmd -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/03_attribution_fit_details.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/03_attribution_fit_details.nb.html -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/03_attribution_fit_details.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/03_attribution_fit_details.pdf -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/10_channelattribution_overview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/10_channelattribution_overview.Rmd -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/10_channelattribution_overview.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/10_channelattribution_overview.nb.html -------------------------------------------------------------------------------- /surf_talk_201903_attribution/R/10_channelattribution_overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/R/10_channelattribution_overview.pdf -------------------------------------------------------------------------------- /surf_talk_201903_attribution/digital_marketing_attribution_modelling_in_r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/digital_marketing_attribution_modelling_in_r.pdf -------------------------------------------------------------------------------- /surf_talk_201903_attribution/surf_talk_201903_attribution.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-booth/teach/HEAD/surf_talk_201903_attribution/surf_talk_201903_attribution.Rproj --------------------------------------------------------------------------------