Publications by Troy McIntire

Bioimplants Case Troy McIntire

10.04.2023

library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.1 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.2 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0 ## ...

4950 sym R (23731 sym/40 pcs)

Kaggle House Prices Troy

05.04.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the...

3312 sym 1 img

pacdev assignment

27.03.2023

Lightly comment your code and use pipes for readability. Comment briefly on each of the questions, as directed. Only the final question requires a more lengthy response. Make sure to include titles for all of the plots in this assignment. Also,by convention the target variable should be placed on the vertical axis. To interpret model coefficient...

7313 sym R (6164 sym/18 pcs) 2 img

Velo.com

06.03.2023

Load data and packages library(tidyverse) v <- read_csv("velo.csv") glimpse(v) ## Rows: 3,483 ## Columns: 7 ## $ customer_id <dbl> 8968, 36687, 42232, 82931, 7010, 83252, 51631, 38122, … ## $ checkout_system <chr> "old", "new", "new", "old", "old", "new", "new", "old"… ## $ device <chr> "computer", "mobile", "computer", "mobile", ...

5473 sym R (5213 sym/31 pcs) 4 img

conley fisheries

27.02.2023

Load packages and create empty data frame # Load packages library(tidyverse) # Define n n <- 1000 # Empty data frame for 1000 simulated days data <- data.frame(day = seq(1:n), demand = NA, # demand in Rockport quantity = NA, # quantity sold price = NA, # price per pound cost = 10000...

5558 sym R (2373 sym/22 pcs) 1 img

flight delay - Troy McIntire

19.02.2023

Load packages and data # Load packages library(tidyverse) # Load data d <- read_csv("flight_delay_clean.csv") # Inspect data glimpse(d) ## Rows: 360 ## Columns: 13 ## $ airline <chr> "RegionEx", "RegionEx", "RegionEx", "RegionEx"… ## $ departure_date <chr> "9/1/2008", "9/1/2008", "9/1/2008", "9/2/2008"… ## $...

5746 sym R (5625 sym/13 pcs) 1 img

week 5 project

25.09.2022

Notes on compiling this document: Change the information in the yaml header above: title and author. Make sure the output argument is set correctly. It should read: output: html_document or output: word_document. Once you are finished writing the code necessary to answer the questions in the quiz, clear your environment by clicking on the bro...

4424 sym Python (6967 sym/18 pcs)