Publications by Alejandro Perez

Assignment 8

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

712 sym R (14388 sym/81 pcs) 6 img

Assignment 7

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

1570 sym R (5528 sym/43 pcs) 6 img

Assignment 6

26.04.2023

6 a library(ISLR2) ## Warning: package 'ISLR2' was built under R version 4.1.3 library(boot) set.seed(1) degree <- 10 cv.errs <- rep(NA, degree) for (i in 1:degree) { fit <- glm(wage ~ poly(age, i), data = Wage) cv.errs[i] <- cv.glm(Wage, fit)$delta[1] } plot(1:degree, cv.errs, xlab = 'Degree', ylab = 'Test MSE', type = 'l') deg.min <- ...

650 sym R (6803 sym/25 pcs) 5 img

Data Mining Assignment 5

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

1292 sym R (10683 sym/79 pcs) 4 img

Assignment 3-Data Mining

25.02.2023

R Markdown ###13 ##a library(MASS) library(ISLR2) ## Warning: package 'ISLR2' was built under R version 4.1.3 ## ## Attaching package: 'ISLR2' ## The following object is masked from 'package:MASS': ## ## Boston summary(Weekly) ## Year Lag1 Lag2 Lag3 ## Min. :1990 Min. :-18.1950 ...

759 sym R (10797 sym/60 pcs) 2 img

Data Mining Assignment 2

18.02.2023

R Markdown ###2 The KNN classifyer is considered a method that is used to solve prolbems with a qualitative response. This method compares training data with the test observation variant(X0). Similar data points are then estimated for conditional probability for a set class(j). In contrast to the KNN regression method that measures quantitative...

1404 sym R (49874 sym/40 pcs) 3 img