Publications by Jean Jimenez

Data 605 Fall 2023 HW#1

31.08.2023

Assignment For this weeks homework assignment, we had to draw our initials onto a plot in R and then perform shear, scaling, rotation, and projection and then animate the plots. I am lucky that my initials are JJ. My strategy was to first draw the letter J. #My initials are JJ # Vertical line of J x1 = rep(0, 1000) y1 = seq(-1, 1, length.out=...

855 sym Python (125757 sym/9 pcs) 11 img

Jean Jimenez Data 607 Homework 1

01.09.2023

Overview The article I chose was "Trump's Endorsees Have Started Losing More. But Don't ReadInto That For 2024." This article is an analysis of the 2022 election data and gives us a glimpse into how effective Trump's endorsements are. While Trump boasts that his endorsements are a guaranteed win, the election candidate tells a different story....

3649 sym R (3628 sym/29 pcs) 2 img

Data606_Lab01_jjimenez

28.08.2023

The RStudio Interface The goal of this lab is to introduce you to R and RStudio, which you’ll be using throughout the course both to learn the statistical concepts discussed in the course and to analyze real data and come to informed conclusions. To clarify which is which: R is the name of the programming language itself and RStudio is a conv...

18171 sym 6 img

Jean Jimenez Final CUNY SPS MSDS SUMMER BRIDGE R Workshop

26.07.2023

How does the type of health insurance (public vs private) influence health score distributions? How do chronic group vs non-chronic groups defer in health scores? How does your health score influence your activity level? I am using a data set of doctors visit metrics. library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are...

4974 sym R (15310 sym/73 pcs) 11 img

Final Project – CUNY SPS MSDS R Summer Bridge

26.07.2023

How does the type of health insurance (public vs private) patients have influence doctor visit metrics? Are there any differences between privately insured high and low risk populations? I am using a data set of doctors visit metrics. #Importing the dataset #tried to import from url but failed due to file size library(readr) DoctorVisits <- re...

3638 sym R (10738 sym/58 pcs) 5 img

HW#2 For CUNY SPS R Bridge Jean Jimenez

18.07.2023

#1- Loading Data, Data Summary, Mean, and Median #Importing Dataset # Load the readr package library(readr) # The URL of the raw version of the CSV file on GitHub url = "https://raw.githubusercontent.com/sleepysloth12/JJim_2023RSummerBridge/e3aeac38e50b05827d573b1393bef38c65369279/Week2/nuclear.csv" # Read the CSV data from the URL nuclea...

2453 sym R (10083 sym/38 pcs)

R Workshop Homework #1

09.07.2023

R Workshop Homework 1 Question 1 Write a loop that calculates 12-factorial Here is my answer for this question: #loop that calculates 12 factorial num=1 for(i in 1:12){ num=num*i } print(num) ## [1] 479001600 Question 2 Show how to create a numeric vector that contains the sequence from 20 to 50 by 5. Here is my answer for this q...

732 sym