View eigenvalues.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Calculating eigenvalues and eigenvectors | |
A<-matrix(c(30,31,40,41,50,51,60,61,70),nrow = 3,byrow = T) | |
e <- eigen(A) | |
e$values | |
e$vectors |
View Inverse.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Inverse of matrix | |
B<-matrix(c(30,31,40,41,50,51,60,61,70),nrow = 3,byrow = T) | |
A<-solve(B) | |
A | |
#Determinant of A | |
det(A) |
View Mmult.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Multiplication of matrix | |
A<-matrix(c(11,12,13,14,15,16,17,18,19),nrow = 3,byrow = T) | |
B<-matrix(c(20,21,22,23,24,25,26,27,28),nrow = 3,byrow = T) | |
A*B |
View Transpose.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Transpose of a matrix | |
t(A) |
View matrix.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A<-matrix(c(11,12,13,14,15,16,17,18,19),nrow = 3,byrow = T) | |
A |
View Z_score.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data <- read.csv(file.choose()) | |
#POPULATION PARAMETERS | |
pop_sd <- sd(data$Screen_size.in.cm.)*sqrt((length(data$Screen_size.in.cm.)-1)/(length(data$Screen_size.in.cm.))) | |
pop_mean <- mean(data$Screen_size.in.cm.) | |
z <- (9.5 - pop_mean) / pop_sd | |
z |
View pnorm.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pnorm(80, mean=67, sd=13.7, lower.tail=FALSE) |
View pbinom.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pbinom(7, size=20, prob=0.25) |
View dbinom.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dbinom(7, size=20, prob=0.25) |
View MC_steadystate.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Steady state Matrix | |
steadyStates(disc_trans) |
NewerOlder