Publications by Nikoleta Emanouilidi

Project 2 Data624

14.12.2024

INSTRUCTIONS Hide Assignment Information Instructions Project #2 (Team) Assignment This is role playing. I am your new boss. I am in charge of production at ABC Beverage and you are a team of data scientists reporting to me. My leadership has told me that new regulations are requiring us to understand our manufacturing process, the predictive ...

6021 sym Python (5797 sym/40 pcs) 37 img 4 tbl

Homework 10 Data 624

27.11.2024

Imagine 10000 receipts sitting on your table. Each receipt represents a transaction with items that were purchased. The receipt is a representation of stuff that went into a customer’s basket - and therefore ‘Market Basket Analysis’. That is exactly what the Groceries Data Set contains: a collection of receipts with each line representing...

2370 sym R (12556 sym/25 pcs) 3 img

Homework 9 Data 624

14.11.2024

8.1. Recreate the simulated data from Exercise 7.2: library(mlbench) ## Warning: package 'mlbench' was built under R version 4.3.3 set.seed(200) simulated <- mlbench.friedman1(200, sd = 1) simulated <- cbind(simulated$x, simulated$y) simulated <- as.data.frame(simulated) colnames(simulated)[ncol(simulated)] <- "y" (a) Fit a random forest mode...

8128 sym R (21526 sym/64 pcs) 6 img

Homework 8 Data 624

07.11.2024

library(ggplot2) library(RANN) library(magrittr) library(caret) ## Loading required package: lattice library(ggplot2) library(reshape2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## inters...

3505 sym R (14835 sym/49 pcs) 2 img

HW 7 Data 624

01.11.2024

6.2. Developing a model to predict permeability (see Sect. 1.4) could save significant resources for a pharmaceutical company, while at the same time more rapidly identifying molecules that have a sufficient permeability to become a drug: (a) Start R and use these commands to load the data: library(caret) library(glmnet) library(AppliedPredic...

6882 sym R (10088 sym/42 pcs) 2 img

Project 1 Data624

27.10.2024

Part A – ATM Forecast In part A, I want you to forecast how much cash is taken out of 4 different ATM machines for May 2010. The data is given in a single file. The variable ‘Cash’ is provided in hundreds of dollars, other than that it is straight forward. I am being somewhat ambiguous on purpose to make this have a little more business ...

16183 sym R (28369 sym/142 pcs) 38 img

Homework 6 Data 624

13.10.2024

Question 1 Figure 9.32 shows the ACFs for 36 random numbers, 360 random numbers and 1,000 random numbers. a) Explain the differences among these figures. Do they all indicate that the data are white noise? The three ACF plots display white noise series of different lengths: 36, 360, and 1,000 numbers. In the plot with 36 numbers, there are s...

11308 sym Python (11843 sym/61 pcs) 34 img

Homework 5 Data 624

05.10.2024

library(fpp3) library(fable) library(ggplot2) library(tsibble) library(dplyr) Question 1 Consider the the number of pigs slaughtered in Victoria, available in the aus_livestock dataset. a) Use the ETS() function to estimate the equivalent model for simple exponential smoothing. Find the optimal values of a and l0 , and generate forecasts ...

9171 sym R (9738 sym/43 pcs) 11 img

Homework 4 Data 624

28.09.2024

3.1. The UC Irvine Machine Learning Repository6 contains a data set related to glass identification. The data consist of 214 glass samples labeled as one of seven class categories. There are nine predictors, including the refractive index and percentages of eight elements: Na, Mg, Al, Si, K, Ca, Ba, and Fe.The data can be accessed via: library...

3756 sym R (4645 sym/16 pcs) 5 img

Homework 3 Data 624

21.09.2024

1 Produce forecasts for the following series using whichever of NAIVE(y), SNAIVE(y) or RW(y ~ drift()) is more appropriate in each case: Australian Population (global_economy) Bricks (aus_production) NSW Lambs (aus_livestock) Household wealth (hh_budget). Australian takeaway food turnover (aus_retail). library(fpp3) ## Warning: package 'fpp3...

5191 sym R (6307 sym/53 pcs) 18 img