gitextract_8tm1g2iv/ ├── .gitignore ├── LICENSE.md ├── README.html ├── README.md ├── docs/ │ ├── data/ │ │ ├── degree_df.csv │ │ └── survival_analysis_data.csv │ └── materials/ │ ├── end-project-1/ │ │ ├── grocery_edgelist.csv │ │ └── grocery_vertices.csv │ ├── end-project-2/ │ │ ├── senator_edgelist.csv │ │ ├── senator_vertices.csv │ │ └── us_senate_twitter (REFERENCE ONLY).Rmd │ ├── end-project-3/ │ │ ├── grocery_edgelist.csv │ │ ├── grocery_eval.csv │ │ └── grocery_vertices.csv │ ├── module-exercises/ │ │ ├── 01-R_fundamentals - SOLUTIONS.Rmd │ │ ├── 01-R_fundamentals---SOLUTIONS.html │ │ ├── 01-R_fundamentals.Rmd │ │ ├── 02A-Statistical_Inference - SOLUTIONS.Rmd │ │ ├── 02A-Statistical_Inference---SOLUTIONS.html │ │ ├── 02A-Statistical_Inference.Rmd │ │ ├── 02B-Linear_regression - SOLUTIONS.Rmd │ │ ├── 02B-Linear_regression---SOLUTIONS.html │ │ ├── 02B-Linear_regression.Rmd │ │ ├── 03A-Binomial_regression - SOLUTIONS.Rmd │ │ ├── 03A-Binomial_regression---SOLUTIONS.html │ │ ├── 03A-Binomial_regression.Rmd │ │ ├── 03B-Ordinal_regression - SOLUTIONS.Rmd │ │ ├── 03B-Ordinal_regression---SOLUTIONS.html │ │ ├── 03B-Ordinal_regression.Rmd │ │ ├── 04-survival_analysis-SOLUTIONS.Rmd │ │ ├── 04-survival_analysis-SOLUTIONS.html │ │ ├── 04-survival_analysis.Rmd │ │ ├── 05-Creating_and_visualizing_graphs - SOLUTIONS.Rmd │ │ ├── 05-Creating_and_visualizing_graphs---SOLUTIONS.html │ │ ├── 05-Creating_and_visualizing_graphs.Rmd │ │ ├── 06-Graph_metrics - SOLUTIONS.Rmd │ │ ├── 06-Graph_metrics---SOLUTIONS.html │ │ └── 06-Graph_metrics.Rmd │ └── talks/ │ ├── 1-preliminaries.Rmd │ ├── 1-preliminaries.html │ ├── 1-preliminaries_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── 2-inference_and_linear_regression.Rmd │ ├── 2-inference_and_linear_regression.html │ ├── 2-inference_and_linear_regression_files/ │ │ ├── crosstalk/ │ │ │ ├── css/ │ │ │ │ └── crosstalk.css │ │ │ └── js/ │ │ │ └── crosstalk.js │ │ ├── header-attrs/ │ │ │ └── header-attrs.js │ │ ├── htmlwidgets/ │ │ │ └── htmlwidgets.js │ │ ├── jquery/ │ │ │ ├── jquery-AUTHORS.txt │ │ │ └── jquery.js │ │ ├── kePrint/ │ │ │ └── kePrint.js │ │ ├── lightable/ │ │ │ └── lightable.css │ │ ├── plotly-binding/ │ │ │ └── plotly.js │ │ └── plotly-htmlwidgets-css/ │ │ └── plotly-htmlwidgets.css │ ├── 3-binomial_and_ordinal_regression.Rmd │ ├── 3-binomial_and_ordinal_regression.html │ ├── 3-binomial_and_ordinal_regression_files/ │ │ ├── header-attrs/ │ │ │ └── header-attrs.js │ │ ├── kePrint/ │ │ │ └── kePrint.js │ │ ├── lightable/ │ │ │ └── lightable.css │ │ └── remark-css/ │ │ ├── default-fonts.css │ │ └── default.css │ ├── 4-advanced_explanatory_methods.Rmd │ ├── 4-advanced_explanatory_methods.html │ ├── 4-advanced_explanatory_methods_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── 5-working_with_and_visualizing_graphs.Rmd │ ├── 5-working_with_and_visualizing_graphs.html │ ├── 5-working_with_and_visualizing_graphs_files/ │ │ ├── d3/ │ │ │ └── LICENSE │ │ ├── forceNetwork-binding/ │ │ │ └── forceNetwork.js │ │ ├── header-attrs/ │ │ │ └── header-attrs.js │ │ ├── htmlwidgets/ │ │ │ └── htmlwidgets.js │ │ ├── kePrint/ │ │ │ └── kePrint.js │ │ └── lightable/ │ │ └── lightable.css │ ├── 6-graph_metrics.Rmd │ ├── 6-graph_metrics.html │ ├── 6-graph_metrics_files/ │ │ ├── header-attrs/ │ │ │ └── header-attrs.js │ │ ├── kePrint/ │ │ │ └── kePrint.js │ │ └── lightable/ │ │ └── lightable.css │ ├── 7A-Project_US_Grocery_Purchasing_Network.Rmd │ ├── 7A-Project_US_Grocery_Purchasing_Network.html │ ├── 7A-Project_US_Grocery_Purchasing_Network_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── 7B-Project_US_Senate_Twitter_Network.Rmd │ ├── 7B-Project_US_Senate_Twitter_Network.html │ ├── 7B-Project_US_Senate_Twitter_Network_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── 8-Project_Grocery_Evaluations.Rmd │ ├── 8-Project_Grocery_Evaluations.html │ ├── 8-Project_Grocery_Evaluations_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── 9-Wrapping_up.Rmd │ ├── 9-Wrapping_up.html │ ├── 9-Wrapping_up_files/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ ├── libs/ │ │ └── header-attrs/ │ │ └── header-attrs.js │ └── style.css └── workshop-conf-2022.Rproj