Skip to content

Commit fad9d9f

Browse files
author
ashnumpy
committedJul 29, 2023
Exporting images
1 parent 8164f84 commit fad9d9f

8 files changed

+8
-1
lines changed
 

‎Images/LookingData1.png

33.3 KB
Loading

‎Images/LookingData2.png

40.4 KB
Loading

‎Images/LookingData3.png

142 KB
Loading

‎Images/Normality1.png

76.8 KB
Loading

‎Images/Prediction.png

67.3 KB
Loading

‎Images/Residuals1.png

75 KB
Loading

‎Images/VaryingVariance.png

68.1 KB
Loading

‎regression-prediction/app.R

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ library(psych)
55
library(zoo)
66
library(lmtest)
77
library(DAAG)
8+
9+
#-------- INSTALLING GITHUB PACKAGES --------#
10+
11+
# 1. install.packages("devtools")
12+
# 2. library(devtools)
13+
# 3. install_github("JohnHendrickx/Perturb")
814
library(perturb)
15+
916
library(fastDummies)
1017
library(MASS)
1118

1219
#raw data
13-
data <- read_table("C:/Users/ramaz/Documents/Github/Regression-web-app/Regression-Web-App/data.txt")
20+
data <- read_table("../data.txt")
1421
names(data) <- c("y","x1","x2","x3","x4")
1522
data$x4 <- as.factor(data$x4)
1623

0 commit comments

Comments
 (0)
Please sign in to comment.