Publications by Matthew Bucciero
Assignment 9
library(readr) hr <- read_csv('https://raw.githubusercontent.com/aiplanethub/Datasets/refs/heads/master/HR_comma_sep.csv') ## Rows: 14999 Columns: 10 ## ── Column specification ────────────────────────────────────────────────────────...
1100 sym R (4293 sym/18 pcs)
Assignment 8
library(readr) hr <- read_csv('https://raw.githubusercontent.com/aiplanethub/Datasets/refs/heads/master/HR_comma_sep.csv') ## Rows: 14999 Columns: 10 ## ── Column specification ────────────────────────────────────────────────────────...
929 sym R (3451 sym/18 pcs)
Assignment 7 - Bucciero and Kell
library(readr) library(plotly) ## Loading required package: ggplot2 ## ## Attaching package: 'plotly' ## The following object is masked from 'package:ggplot2': ## ## last_plot ## The following object is masked from 'package:stats': ## ## filter ## The following object is masked from 'package:graphics': ## ## layout hr <- read_csv('h...
835 sym R (1568 sym/13 pcs) 1 img
Assignment 6 - Bucciero & Kell
R Markdown library(readr) library(plotly) ## Loading required package: ggplot2 ## ## Attaching package: 'plotly' ## The following object is masked from 'package:ggplot2': ## ## last_plot ## The following object is masked from 'package:stats': ## ## filter ## The following object is masked from 'package:graphics': ## ## layout librar...
844 sym R (2343 sym/18 pcs)
Assignment 5 - Bucciero & Kell
library(nycflights13) library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.5.1 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 �...
86 sym R (5045 sym/18 pcs)
Assignment 4
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 # Dataset 1: Customers customers <- tibble( customer_id = c(1, 2, 3, 4, 5), name = c("Alice", "Bob", "Charlie", ...
1960 sym R (4786 sym/23 pcs)
Bucciero, Kell Assignment 3
Question 1 q1 <- movies %>% rename(movie_title = Film, release_year = Year) print(head(q1)) ## # A tibble: 6 × 8 ## movie_title Genre `Lead Studio` `Audience score %` Profitability ## <chr> <chr> <chr> <dbl> <dbl> ## 1 Zack and Miri Make a Por… Roma… The Weinstei… ...
437 sym Python (5471 sym/13 pcs)
DATA 3210 Assignment 2
Question 1 library(readr) HR_comma_sep <- read_csv("~/Documents/DATA ANALYTICS METHOD/HR_comma_sep.csv") ## Rows: 14999 Columns: 10 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ...
604 sym R (499 sym/2 pcs)