Publications by VIctor H Torres

Project Proposal DATA 606

08.04.2024

Research Question How many students in NYC got the COVID 19 vaccine ages 5+ in 2022? ## Rows: 1584 Columns: 6 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (1): Schoo...

1640 sym 2 img

Discussion 11, Recommender Systems

08.04.2024

Task. Your task is to analyze an existing recommender system that you find interesting. You should: 1. Perform a Scenario Design analysis as described below. Consider whether it makes sense for your selected recommender system to perform scenario design twice, once for the organization (e.g. Amazon.com) and once for the organization’s cust...

4872 sym

Week 10 Assignment

31.03.2024

Introduction. For this Assignment, I’m going to get a primary example code from “Text Mining with R, Chapter 2”(Julia Silge and David Robinson.).Also, I will work with a different corpus of my choosing, and incorporate at one additional sentiment lexicon from another R package found through research. Load Libraries required for this ass...

2406 sym R (13916 sym/78 pcs) 7 img

Assignment 9

24.03.2024

Intoduction. For this week’s assignment, we need to choose one APIs from the New York Times web page, get an API key, construct an interface in R to read the JSON data, and and transform it into an R DataFrame. Import Libraries required for this assignment. library(tidyverse) ## ── Attaching core tidyverse packages ───────�...

1027 sym R (9961 sym/20 pcs) 1 img 1 tbl

Json Assignment

20.03.2024

Introduction. For this assignment, we will be working with two JSON files available through the API at nobelprize.org, ask 4 interesting questions and answer using data analysis. Load Packages Required for the Project library(tidyverse) ## ── Attaching core tidyverse packages ─────────────────────�...

1314 sym R (16984 sym/24 pcs) 4 img

Week 7 Assignment

10.03.2024

Introduction. Week seven assignment is about preparing three different files with same data in it, to practice loading diferent formats into R Studio (HTML, JSON and XML). After convert the files to data frames, we have to compare to see if there is any differences, in order to understand better the file structures, the three files were manual...

1146 sym R (5368 sym/28 pcs)

Project 2

04.03.2024

Project 2 The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. I going tol get the data from a .CSV file that I created. college_data<-read.csv('https://raw.githubusercontent.com/vitugo23/DATA607/main/project2/grad_rates_data.csv') dim(college_data) ## [1] 8 13 head(college_data) ## ...

441 sym R (15016 sym/35 pcs) 1 img

Assignment 5

25.02.2024

I create a .CSV file named “airflight_chart” in excel and uploaded into my Github Account, from there, I downloaded the file into R studio using the read.csv file command to get the information into R studio. airflight_chart<-read.csv('https://raw.githubusercontent.com/vitugo23/DATA607/main/airflight_chart.csv', stringsAsFactors = FALSE) ###...

1794 sym R (13409 sym/33 pcs) 1 img

Document

18.02.2024

DESCRIPTION. The purpose of this project is to analize data from a TXT file with chess tournament results. Player’s Name, Player’s State, Total Number of Points, Player’s Pre-Rating, and Average Pre Chess Rating of Opponents, will be the information required to analized the data, and obtain all the information required for the project. l...

710 sym R (4496 sym/15 pcs) 2 img

Assignment 2

03.02.2024

##Assignment 2 In this assignment we were requested to create a database and uploaded to the R console. I created a simple database in MySQL 8 with two tables with names of the movies and viewers, including the rating of each one. ##First we need to install the RMySQl package into R studio. library(RMySQL) ## Loading required package: DBI libra...

574 sym R (1417 sym/10 pcs)