├── .gitignore ├── Chapter 1 - Getting Started with R and Social Media Analytics ├── Code │ ├── advanced.R │ ├── code_flow_control.R │ ├── data_structures.R │ ├── data_types.R │ ├── functions.R │ ├── sample_executions.R │ └── visualize_data.R └── README.md ├── Chapter 2 - Analyzing Twitter ├── Code │ ├── B06056_02_01_code.R │ ├── B06056_02_02_code.R │ ├── B06056_02_03_code.R │ └── B06056_02_04_code.R └── README.md ├── Chapter 3 - Analyzing Facebook ├── Code │ ├── afc_top_post_2014.RData │ ├── arsenal.RData │ ├── fb_page_data_analysis.R │ ├── fb_pages_network_analysis.R │ ├── fb_personal_network_analysis.R │ ├── man_city.RData │ ├── man_united.RData │ ├── mu_top_post_2015.RData │ ├── multiple_plots.R │ ├── pl.gml │ └── pl_graph.gdf └── README.md ├── Chapter 4 - Analyzing Foursquare ├── Code │ ├── B06056_04_01_code.R │ ├── B06056_04_02_code.R │ ├── B06056_04_03_code.R │ └── B06056_04_04_code.R └── README.md ├── Chapter 5 - Analyzing GitHub ├── Code │ ├── env_setup.R │ ├── github_api_access.R │ ├── github_language_trend_analysis.R │ ├── github_repo_activity_analysis.R │ ├── github_repo_trend_analysis.R │ ├── github_trending_repo_retrieval.R │ ├── github_user_trend_analysis.R │ ├── load_packages.R │ └── trending_repos.RData └── README.md ├── Chapter 6 - Analyzing StackExchange ├── Code │ ├── B06056_06_01.R │ └── B06056_06_02.R └── README.md ├── Chapter 7 - Analyzing Flickr ├── Code │ ├── B06056_07_01.R │ ├── B06056_07_02.R │ ├── B06056_07_03.R │ └── B06056_07_04.R └── README.md ├── Chapter 8 - Analyzing News Platforms ├── Code │ ├── Article-chris_woakes.txt │ ├── Article-housing_crisis.txt │ ├── B06056_08_01_code.R │ ├── B06056_08_02_code.R │ ├── B06056_08_03_code.R │ └── B06056_08_04_code.R └── README.md ├── LICENSE ├── README.md └── image_gallery ├── amazon_logo.png ├── front_cover.png ├── packt_logo.png └── safari_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/advanced.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/advanced.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/code_flow_control.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/code_flow_control.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/data_structures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/data_structures.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/data_types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/data_types.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/functions.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/sample_executions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/sample_executions.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/Code/visualize_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 1 - Getting Started with R and Social Media Analytics/Code/visualize_data.R -------------------------------------------------------------------------------- /Chapter 1 - Getting Started with R and Social Media Analytics/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 1: 2 | -------------------------------------------------------------------------------- /Chapter 2 - Analyzing Twitter/Code/B06056_02_01_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 2 - Analyzing Twitter/Code/B06056_02_01_code.R -------------------------------------------------------------------------------- /Chapter 2 - Analyzing Twitter/Code/B06056_02_02_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 2 - Analyzing Twitter/Code/B06056_02_02_code.R -------------------------------------------------------------------------------- /Chapter 2 - Analyzing Twitter/Code/B06056_02_03_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 2 - Analyzing Twitter/Code/B06056_02_03_code.R -------------------------------------------------------------------------------- /Chapter 2 - Analyzing Twitter/Code/B06056_02_04_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 2 - Analyzing Twitter/Code/B06056_02_04_code.R -------------------------------------------------------------------------------- /Chapter 2 - Analyzing Twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 2 - Analyzing Twitter/README.md -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/afc_top_post_2014.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/afc_top_post_2014.RData -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/arsenal.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/arsenal.RData -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/fb_page_data_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/fb_page_data_analysis.R -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/fb_pages_network_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/fb_pages_network_analysis.R -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/fb_personal_network_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/fb_personal_network_analysis.R -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/man_city.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/man_city.RData -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/man_united.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/man_united.RData -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/mu_top_post_2015.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/mu_top_post_2015.RData -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/multiple_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/multiple_plots.R -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/pl.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/pl.gml -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/Code/pl_graph.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 3 - Analyzing Facebook/Code/pl_graph.gdf -------------------------------------------------------------------------------- /Chapter 3 - Analyzing Facebook/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 1: 2 | -------------------------------------------------------------------------------- /Chapter 4 - Analyzing Foursquare/Code/B06056_04_01_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 4 - Analyzing Foursquare/Code/B06056_04_01_code.R -------------------------------------------------------------------------------- /Chapter 4 - Analyzing Foursquare/Code/B06056_04_02_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 4 - Analyzing Foursquare/Code/B06056_04_02_code.R -------------------------------------------------------------------------------- /Chapter 4 - Analyzing Foursquare/Code/B06056_04_03_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 4 - Analyzing Foursquare/Code/B06056_04_03_code.R -------------------------------------------------------------------------------- /Chapter 4 - Analyzing Foursquare/Code/B06056_04_04_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 4 - Analyzing Foursquare/Code/B06056_04_04_code.R -------------------------------------------------------------------------------- /Chapter 4 - Analyzing Foursquare/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 1: 2 | -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/env_setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/env_setup.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_api_access.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_api_access.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_language_trend_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_language_trend_analysis.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_repo_activity_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_repo_activity_analysis.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_repo_trend_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_repo_trend_analysis.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_trending_repo_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_trending_repo_retrieval.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/github_user_trend_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/github_user_trend_analysis.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/load_packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/load_packages.R -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/Code/trending_repos.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 5 - Analyzing GitHub/Code/trending_repos.RData -------------------------------------------------------------------------------- /Chapter 5 - Analyzing GitHub/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 1: 2 | -------------------------------------------------------------------------------- /Chapter 6 - Analyzing StackExchange/Code/B06056_06_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 6 - Analyzing StackExchange/Code/B06056_06_01.R -------------------------------------------------------------------------------- /Chapter 6 - Analyzing StackExchange/Code/B06056_06_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 6 - Analyzing StackExchange/Code/B06056_06_02.R -------------------------------------------------------------------------------- /Chapter 6 - Analyzing StackExchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 6 - Analyzing StackExchange/README.md -------------------------------------------------------------------------------- /Chapter 7 - Analyzing Flickr/Code/B06056_07_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 7 - Analyzing Flickr/Code/B06056_07_01.R -------------------------------------------------------------------------------- /Chapter 7 - Analyzing Flickr/Code/B06056_07_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 7 - Analyzing Flickr/Code/B06056_07_02.R -------------------------------------------------------------------------------- /Chapter 7 - Analyzing Flickr/Code/B06056_07_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 7 - Analyzing Flickr/Code/B06056_07_03.R -------------------------------------------------------------------------------- /Chapter 7 - Analyzing Flickr/Code/B06056_07_04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 7 - Analyzing Flickr/Code/B06056_07_04.R -------------------------------------------------------------------------------- /Chapter 7 - Analyzing Flickr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 7 - Analyzing Flickr/README.md -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/Article-chris_woakes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/Article-chris_woakes.txt -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/Article-housing_crisis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/Article-housing_crisis.txt -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/B06056_08_01_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/B06056_08_01_code.R -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/B06056_08_02_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/B06056_08_02_code.R -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/B06056_08_03_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/B06056_08_03_code.R -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/Code/B06056_08_04_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/Chapter 8 - Analyzing News Platforms/Code/B06056_08_04_code.R -------------------------------------------------------------------------------- /Chapter 8 - Analyzing News Platforms/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 1: 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/README.md -------------------------------------------------------------------------------- /image_gallery/amazon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/image_gallery/amazon_logo.png -------------------------------------------------------------------------------- /image_gallery/front_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/image_gallery/front_cover.png -------------------------------------------------------------------------------- /image_gallery/packt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/image_gallery/packt_logo.png -------------------------------------------------------------------------------- /image_gallery/safari_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipanjanS/learning-social-media-analytics-with-r/HEAD/image_gallery/safari_logo.png --------------------------------------------------------------------------------