├── .gitignore ├── LICENSE ├── README.md ├── assemble_trump_data.R ├── compare_executive_orders.R ├── data ├── gop_2016_candidate_docs.csv ├── gwb_executive_orders.csv ├── obama_executive_orders.csv ├── trump_campaign_speeches.csv ├── trump_executive_orders.csv ├── trump_executive_orders_2017-03-01.csv ├── trump_major_speeches.csv ├── trump_news_conferences.csv ├── trump_policy_statements.csv ├── trump_press_briefings.csv ├── trump_proclamations.csv └── trump_radio_addresses.csv ├── examples.R ├── foment.csv ├── functions.R ├── presidency_project.Rmd ├── presidency_project.html └── visualizations ├── gwb_exec_orders_network.png ├── log_odds_exec_orders_bush_obama.png ├── log_odds_exec_orders_obama_trump.png ├── obama_bush_words_exec_orders.png ├── obama_exec_orders_network.png ├── trump_exec_orders_network.png └── trump_obama_words_exec_orders.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/README.md -------------------------------------------------------------------------------- /assemble_trump_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/assemble_trump_data.R -------------------------------------------------------------------------------- /compare_executive_orders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/compare_executive_orders.R -------------------------------------------------------------------------------- /data/gop_2016_candidate_docs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/gop_2016_candidate_docs.csv -------------------------------------------------------------------------------- /data/gwb_executive_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/gwb_executive_orders.csv -------------------------------------------------------------------------------- /data/obama_executive_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/obama_executive_orders.csv -------------------------------------------------------------------------------- /data/trump_campaign_speeches.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_campaign_speeches.csv -------------------------------------------------------------------------------- /data/trump_executive_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_executive_orders.csv -------------------------------------------------------------------------------- /data/trump_executive_orders_2017-03-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_executive_orders_2017-03-01.csv -------------------------------------------------------------------------------- /data/trump_major_speeches.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_major_speeches.csv -------------------------------------------------------------------------------- /data/trump_news_conferences.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_news_conferences.csv -------------------------------------------------------------------------------- /data/trump_policy_statements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_policy_statements.csv -------------------------------------------------------------------------------- /data/trump_press_briefings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_press_briefings.csv -------------------------------------------------------------------------------- /data/trump_proclamations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_proclamations.csv -------------------------------------------------------------------------------- /data/trump_radio_addresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/data/trump_radio_addresses.csv -------------------------------------------------------------------------------- /examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/examples.R -------------------------------------------------------------------------------- /foment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/foment.csv -------------------------------------------------------------------------------- /functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/functions.R -------------------------------------------------------------------------------- /presidency_project.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/presidency_project.Rmd -------------------------------------------------------------------------------- /presidency_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/presidency_project.html -------------------------------------------------------------------------------- /visualizations/gwb_exec_orders_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/gwb_exec_orders_network.png -------------------------------------------------------------------------------- /visualizations/log_odds_exec_orders_bush_obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/log_odds_exec_orders_bush_obama.png -------------------------------------------------------------------------------- /visualizations/log_odds_exec_orders_obama_trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/log_odds_exec_orders_obama_trump.png -------------------------------------------------------------------------------- /visualizations/obama_bush_words_exec_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/obama_bush_words_exec_orders.png -------------------------------------------------------------------------------- /visualizations/obama_exec_orders_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/obama_exec_orders_network.png -------------------------------------------------------------------------------- /visualizations/trump_exec_orders_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/trump_exec_orders_network.png -------------------------------------------------------------------------------- /visualizations/trump_obama_words_exec_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshaffer/presidencyproject/HEAD/visualizations/trump_obama_words_exec_orders.png --------------------------------------------------------------------------------