Publications by Group 4

DATA605 Final Project

29.11.2019

library(tidyverse) library(gridExtra) library(kableExtra) library(psych) library(corrplot) library(matrixcalc) library(MASS) library(Rmisc) library(mice) library(VIM) library(broom) Problem 1 Using R, generate a random variable X that has 10,000 random uniform numbers from 1 to N, where N can be any number of your choosing greater than...

10281 sym R (25933 sym/89 pcs) 17 img 4 tbl

DATA605 Assignment 15

26.11.2019

Question 1 Find the equation of the regression line for the given points. Round any final values to the nearest hundredth, if necessary. (5.6, 8.8), (6.3, 12.4), (7, 14.8), (7.7, 18.2), (8.4, 20.8) x <- c(5.6, 6.3, 7, 7.7, 8.4 ) y <- c(8.8, 12.4, 14.8, 18.2, 20.8) df <- data.frame(cbind(x, y)) xy.lm <- lm(y ~ x, data = df) xy.lm ## ## Call...

3486 sym R (312 sym/3 pcs) 1 img

DATA605 Assignment 14

25.11.2019

Equation 1 \[\pmb{f(x) = \frac{1}{(1-x)}}\] Function evaluated at \(0\): \[f(0) = \frac{1}{1-0} = 1\] Function re-written: \[\frac{1}{(1-x)} = 1(1-x)^{-1}\] Derivatives First Derivative: \[f'(x) = -1(1-x)^{-2}.(-1)= 1(1-x)^{-2} = \frac{1}{(1-x)^{2}}\] First Derivative evaluated: \(f'(0) = 1\) Second Derivative: \[f''(x) = -2(1-x)^{-3}.(-1)= ...

2670 sym

DATA624 Homework 4

26.02.2020

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. library(mlbench) library(tidyverse) ...

2827 sym R (14548 sym/44 pcs) 10 img

DATA621 - Blog 3: Automated EDA - DataExplorer

29.02.2020

Before performing analysis or any type of predictive modeling on a data set, you may want to see what the data looks like in order to understand what problem solving techniques you can develop to derive the desired information you wish to obtain from the data. A lot of time, cleaning and organizing data can be time-consuming. There is an R packag...

799 sym R (943 sym/16 pcs) 14 img

DATA624 Homework 6

15.03.2020

library(tidyverse) library(fpp2) library(urca) 8.1 Figure 8.31 shows the ACFs for 36 random numbers, 360 random numbers and 1,000 random numbers. Explain the differences among these figures. Do they all indicate that the data are white noise? Time series data are considered white noise if less than 5% of the ACF spikes are above the 95% limi...

4811 sym R (6524 sym/70 pcs) 24 img

DATA621 Project 1

25.03.2020

library(fpp2) library(tidyverse) library(readxl) library(e1071) library(caret) library(car) library(kableExtra) library(GGally) library(gridExtra) library(mice) PART A: ATM FORECAST 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 hun...

5813 sym R (9886 sym/89 pcs) 32 img 3 tbl

DATA621 Final Project

07.04.2020

Abstract The purpose of this paper is to provide researchers and readers a comprehensive review of scholarly research on credit risk analysis using various classification models to predict whether a customer may get approved for a loan based on the features of their background similar to what is in the dataset used. Credit risk is usually the res...

16620 sym R (5065 sym/8 pcs) 8 img 5 tbl

DATA608 Module 6

11.04.2020

DATA608 Module 6 Javern Wilson 4/11/2020 Assignment 6: D3 lab D3.js is a powerful data visualization library. Rather than being based around existing plot types, d3 allows you to bind any html element. This power is a double edged sword. It allows you to build completely custom data visualizations, but because you’re dealing with individual ...

5302 sym R (5081 sym/9 pcs) 2 img