Publications by Tora Mullings

607 - A1

05.02.2022

Overview This article from FiveThirtyEight explores reasons that many Americans choose not to vote in elections. The reasons include: * They feel their vote doesn’t matter. * They feel voting isn’t worth their time. * They don’t have the time because of their job. * They feel intimated by the voting process. * Neither candidate is appealing...

2700 sym R (4206 sym/17 pcs) 3 img

A10

06.04.2022

Introduction Sentiment analysis is the practice of extracting or classifying subjective portions of text. Here will first examine a code example of sentiment analysis on Jane Austen books, followed by an example on a different text, and finally an overview of the process. Base Analysis Unnest tokens The corpus, or body of text, that we will per...

6846 sym R (10811 sym/64 pcs) 8 img

A7 - Web Data

18.03.2022

Introduction Suppose you choose 3 of our favorite books. You write one HTML file with some metadata about all 3. This may include the author(s) names, number of pages, etc. You repeat this with an XML file and JSON file. Let’s say you would like to do analysis with the data. Which of these 3 files is less of a pain to load into your R environm...

919 sym R (3518 sym/12 pcs)

Product Ratings

09.03.2022

library(ggplot2) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v tibble 3.1.6 v dplyr 1.0.7 ## v tidyr 1.1.4 v stringr 1.4.0 ## v readr 2.1.1 v forcats 0.5.1 ## v purrr 0.3.4 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- ## ...

14 sym R (9326 sym/8 pcs) 1 img

NYC Early Childhood Schools Quality Report 2020-2021

09.03.2022

library(ggplot2) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v tibble 3.1.6 v dplyr 1.0.7 ## v tidyr 1.1.4 v stringr 1.4.0 ## v readr 2.1.1 v forcats 0.5.1 ## v purrr 0.3.4 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- ## ...

156 sym R (662 sym/7 pcs) 1 img

A5 - COVID-19 Vaccination in Israel

05.03.2022

Load required libraries. library(tidyr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(stringr) COVID-19 Vaccination in Israel This Wikipedia link ...

3687 sym R (3422 sym/22 pcs)

Project 1 - Chess Results

26.02.2022

Load the necessary libraries. readr, tidyverse and stringr. library(readr) library(stringr) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.5 v purrr 0.3.4 ## v tibble 3.1.6 v dplyr 1.0.7 ## v tidyr 1.1.4 v forcats 0.5.1 ## -- Conflicts ----------------...

1461 sym R (3706 sym/15 pcs)

A3 - Character Manipulation

18.02.2022

Load required libraries. tidyverse library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.5 v purrr 0.3.4 ## v tibble 3.1.6 v dplyr 1.0.7 ## v tidyr 1.1.4 v stringr 1.4.0 ## v readr 2.1.1 v forcats 0.5.1 ## -- Conflicts ----------------------------------...

1636 sym R (2919 sym/19 pcs)

Ramen Ratings

09.03.2022

library(ggplot2) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v tibble 3.1.6 v dplyr 1.0.7 ## v tidyr 1.1.4 v stringr 1.4.0 ## v readr 2.1.1 v forcats 0.5.1 ## v purrr 0.3.4 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- ## ...

181 sym R (2030 sym/12 pcs) 1 img

A9-Web APIs

02.04.2022

Introduction Task: Convert JSON data returned from a NYTimes API to a data frame. I chose the Books API and I have signed up for my API key. Click here to see the different paths to request information from. Load libraries For this task, httr is for making requests to the Books API. The jsonlite library will help to convert the responses to dat...

2559 sym R (86352 sym/42 pcs)