Publications by Rashad Long

NYPD Arrest Rate vs Weather Variables

06.05.2024

NYPD Arrest Rate vs Weather Variables Author Rashad Long Introduction The NYPD Arrests Data-sets provides a detailed record of arrests in New York City during this period. It serves as a valuable resource for understanding crime patterns and trends within the city. The dataset encompasses a wide range of information, including the demographic d...

6437 sym Python (21652 sym/73 pcs) 8 img

Multiple Linear Regression

20.04.2024

Grading the professor Many college courses conclude by giving students the opportunity to evaluate the course and the instructor anonymously. However, the use of these student evaluations as an indicator of course quality and teaching effectiveness is often criticized because these measures may reflect the influence of non-teaching related char...

15048 sym 18 img

GGplot Vignette

14.04.2024

Introduction This project showcases an example of an R Vignette, centered around the powerful visualization capabilities of the ggplot2 package. In this RMD, a dataset sourced from FiveThirtyEight is used, specifically focusing on the age distribution within the U.S. Congress (https://fivethirtyeight.com/features/aging-congress-boomers/). The g...

3489 sym R (4778 sym/23 pcs) 18 img

Document Classification - Logistic Regression

14.04.2024

Document Classification - Logistic Regression Author Rashad Long Published 4/14/24 Introduction Using the Miller Center API, we will be analyzing the speeches of the Presidents of the United States. We will be using the transcript of the speeches to classify the speeches into two categories: speeches by Barack Obama and speeches by other Pres...

8818 sym

Introduction to linear regression

11.04.2024

The Human Freedom Index is a report that attempts to summarize the idea of “freedom” through a bunch of different variables for many countries around the globe. It serves as a rough objective measure for the relationships between the different types of freedom - whether it’s political, religious, economical or personal freedom - and other...

12193 sym 7 img

Netflix Recommender System

07.04.2024

Netflix Recommender System Author Rashad Long Published 4/6/24 Netflix: A Global Leader in Streaming Entertainment Netflix, Inc., an American media company founded in 1997, is the world’s preeminent subscription video on-demand (SVOD) service. Launched in 2007, it offers a vast library of original and acquired films and television shows acr...

10495 sym 2 img

Netflix Recommender System

07.04.2024

Netflix Recommender System Author Rashad Long Published 4/6/24 Netflix: A Global Leader in Streaming Entertainment Netflix, Inc., an American media company founded in 1997, is the world’s preeminent subscription video on-demand (SVOD) service. Launched in 2007, it offers a vast library of original and acquired films and television shows acr...

10558 sym 2 img

Inference for numerical data

31.03.2024

Getting Started Load packages In this lab, we will explore and visualize the data using the tidyverse suite of packages, and perform statistical inference using infer. The data can be found in the companion package for OpenIntro resources, openintro. Let’s load the packages. library(tidyverse) library(openintro) library(infer) The data Ev...

8460 sym 7 img 1 tbl

Sentiment Analysis

31.03.2024

Sentinment Analysis Author Rashad Long Sentiment Analysis with tidy data The tidytext package provides access to several sentiment lexicons. The three that are used in Text Mining with R, Chapter 2 - Sentiment Analysis are : AFINN from Finn Årup Nielsen, bing from Bing Liu and collaborators, and nrc from Saif Mohammad and Peter Turney. Besid...

4262 sym Python (11891 sym/42 pcs) 2 img

Vignette for Purrr

31.03.2024

Vignette for Purrr Author Rashad Long Introduction The purrr package provides functions that eliminate the need for many common for loops. They are more consistent and thus easier to learn than many of the alternative functions in the base R package. It allows you to generalize a solution to every element in a list. It also allows you get lots ...

1210 sym Python (1872 sym/9 pcs)