Publications by Jack Wright

preprocessing hw

06.03.2022

Preprocessing/Overfitting Homework Jack Wright 3.1, 3.2 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,...

6244 sym R (4809 sym/36 pcs) 10 img

Time-Series

10.02.2022

Timeseries Data 624 Jack Wright 2.1 Use the help function to explore what the series gafa_stock, PBS, vic_elec and pelt represent. a.Use autoplot() to plot some of the series in these data sets. b.What is the time interval of each series? Lets do some EDA on the datasets provided gafa_stock #help(gafa_stock) gafa_stock are historical stock pri...

6835 sym R (3910 sym/30 pcs) 15 img 5 tbl

hw_2_predictive

18.02.2022

Time Series Decomposition Homework Jack Wright 3.1, 3.2, 3.3, 3.4, 3.5, 3.7, 3.8 and 3.9 3.1 Consider the GDP information in global_economy. Plot the GDP per capita for each country over time. Which country has the highest GDP per capita? How has this changed over time? ⊕countries with highest mean gdp per capita across all years Country me...

5294 sym R (128 sym/5 pcs) 15 img 2 tbl

Capstone Idea

25.02.2022

Time Series Decomposition Homework Jack Wright Introduction The research team headed by Dr Colette Daiute at the CUNY Grad Center is conducting a followup research project to their 2018 study, “Meta-Communication Between Designers and Players of Interactive Digital Narratives.” This study addresses quantitatively analysing “meta-communicatio...

4915 sym R (50 sym/1 pcs)

Toolbox HW

28.02.2022

Time Series Decomposition Homework Jack Wright 5.1, 5.2, 5.3, 5.4 and 5.7 5.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 Popula...

4157 sym R (17223 sym/107 pcs) 26 img

Exponential Smoothing Homework

10.03.2022

Exponential Smoothing Homework Jack Wright 8.1, 8.5, 8.6, 8.7, 8.8, 8.9 8.1 Consider the the number of pigs slaughtered in Victoria, available in the aus_livestock dataset. Use the ETS() function to estimate the equivalent model for simple exponential smoothing. Find the optimal values of α and ℓ 0, and generate forecasts for the next four m...

5845 sym R (3098 sym/20 pcs) 15 img

Lit review 1

23.03.2022

This literature review will support the goal of creating a more robust Narrative Tree Complexity Metric for the field of Interactive Digital Narrative Design. To build a case, we will examine: Narrative Theory Complexity Theory Measuring Complexity Pairwise Comparison Use of Complexity in IDN Current state of tree-structure complexity metrics in...

13804 sym

Simple Linear Regression with Dummy Variable

23.03.2022

Requirements for simple linear regression with dummy variable response variable is.continuous(dependent_variable) predictor variable is.binary(predictor_variable) library(tidyverse) library(here) library(AER) data('CASchools') df<-CASchools df<-df%>%dplyr::mutate(STR=as.numeric(students)/as.numeric(teachers)) df<-df%>%mutate(D=STR<20)%>%muta...

621 sym R (2656 sym/12 pcs) 1 img

Poisson Distribution

25.03.2022

Poisson Distribution expresses the probability of a given number of events occuring in a fixed interval of time or space IF these events occur with a known constant mean rate AND independently Poisson Case examples Probability of occcurrence of an event in a given time interval is proportional to the length of that time interval and independent ...

2279 sym R (2905 sym/13 pcs) 1 img

Nonlinear Regression Homework

26.04.2022

NonLinear Regression Jack Wright 7.2 , 7.5 7.2 Benchmark data set created by simulation. One of the simulations used the following nonlinear equation \[y = 10sin(\pi x_1 x_2)+20(x_3 -0.5)^2+10x_4 + 5x_5 +N(0, \sigma^2)\] x are the values of random variables uniformly distributed between [0,1] 5 non-informative variables also created for simulat...

3162 sym R (9973 sym/57 pcs) 5 img