Publications by Dell

Lab 08 - Introduction to Linear regression

03.11.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...

14810 sym 9 img

Project2 D607

29.10.2024

Project 2 DATA 607: Preparing Dataset for Analysis # Load necessary libraries 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(tidyr) library(readr) ...

2100 sym R (29668 sym/73 pcs) 11 img

lab7D606

28.10.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...

8814 sym Python (6488 sym/35 pcs) 3 img

Assignment7D607

21.10.2024

# Load necessary library library(stringi) # Read raw JSON data raw_json <- readLines("C:/Users/Dell/Downloads/jsonformatA7.js", warn = FALSE) # Remove non-UTF-8 characters cleaned_json <- stri_replace_all_fixed(raw_json, "\u0097", "", vectorize = TRUE) # Removing specific invalid character cleaned_json <- iconv(cleaned_json, from = "UTF-8",...

1068 sym R (15679 sym/15 pcs)

Lab 06 - Inference for categorical data

20.10.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 Yo...

10533 sym Python (4845 sym/25 pcs) 2 img

Project2 D607

15.10.2024

Project 2 DATA 607: Analysis of HIV/AIDS Diagnoses by Neighborhood, Sex, and Race/Ethnicity in NYC #Introduction This is the analysis of dataset on HIV and AIds diagnoses in New York City, covering 2010 to 2021 that reveals critical trends and insights showing key years peaks and fluctuations, the data provides valuable context for understandin...

2937 sym R (12253 sym/27 pcs) 6 img

Lab 05 part B Confidence intervals

14.10.2024

If you have access to data on an entire population, say the opinion of every adult in the United States on whether or not they think climate change is affecting their local community, it’s straightforward to answer questions like, “What percent of US adults think climate change is affecting their local community?”. Similarly, if you had d...

15525 sym 1 img 1 tbl

Lab 05 part A Sampling Distributions

14.10.2024

In this lab, you will investigate the ways in which the statistics from a random sample of data can serve as point estimates for population parameters. We’re interested in formulating a sampling distribution of our estimate in order to learn about the properties of the estimate, such as its distribution. Setting a seed: We will take some ran...

14191 sym Python (3951 sym/23 pcs) 3 img

Project1 D607

09.10.2024

# List of packages to install packages <- c("RCurl", "knitr", "kableExtra", "tidyverse", "stringr") # Check and install packages if not already installed new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if (length(new_packages) > 0) { install.packages(new_packages) } # Load required libraries library(RCurl) ...

2179 sym R (6592 sym/28 pcs) 4 img 2 tbl

Assignment4D607

30.09.2024

#Assignment 4 #By Jose Fuentes #1rst and 2nd Part # Load the necessary library that contains tidyr and dplyr library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ...

53 sym R (8744 sym/49 pcs) 1 img