Publications by Nikoleta Emanouilidi

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

Homework 2 Data 624

14.09.2024

library(lubridate) library(tsibble) ## Warning: package 'tsibble' was built under R version 4.3.3 library(ggplot2) ## Warning: package 'ggplot2' was built under R version 4.3.3 library(tidyverse) library(fpp3) ## Warning: package 'fpp3' was built under R version 4.3.3 ## Warning: package 'tsibbledata' was built under R version 4.3.3 ## Warning: p...

6769 sym R (7030 sym/47 pcs) 26 img

Homework 1 Data 624

07.09.2024

First, I’m loading some libraries that I think will be useful. library(lubridate) ## ## Attaching package: 'lubridate' ## The following objects are masked from 'package:base': ## ## date, intersect, setdiff, union library(tsibble) ## Warning: package 'tsibble' was built under R version 4.3.3 ## Registered S3 method overwritten by 'tsibbl...

5931 sym R (7308 sym/84 pcs) 31 img

Final Project data 607

02.05.2024

library(dplyr) library(ggplot2) library(tidyr) library(shiny) ## Warning: package 'shiny' was built under R version 4.3.3 library(DT) ## Warning: package 'DT' was built under R version 4.3.3 library(jsonlite) ## Warning: package 'jsonlite' was built under R version 4.3.3 library(httr) ## Warning: package 'httr' was built under R version 4.3.3 I...

6009 sym R (7961 sym/25 pcs) 1 img

Week 10 Data 607

30.03.2024

Load the libraries ### I found the libraries by reading chapter 1 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.4.4 ...

1452 sym R (13318 sym/68 pcs) 6 img

Week 9 Data 607

22.03.2024

Load the desired libraries. library(httr) library(jsonlite) 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.4.4 ✔ t...

541 sym R (14993 sym/7 pcs)

Week 7 Data 607

09.03.2024

Load the needed libraries library(xml2) library(jsonlite) library(XML) HTML You can find the code I used to create the html table in my Github page! There’s a link to the code source: https://github.com/NikoletaEm/607LABS/blob/main/books.html Load the html file I created with my favourite books in a dataframe! books_html <- readHTMLTable(...

1501 sym R (5233 sym/35 pcs)

Project 2 Data 607

02.03.2024

Dataset 1: FIFA 2021 Data First step. Load the needed libraries! library(tidyr) 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(ggplot2) library(rea...

14537 sym R (27563 sym/73 pcs) 10 img