-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMSR_Lab_6.R
113 lines (69 loc) · 1.61 KB
/
MSR_Lab_6.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
### MSR Laboratorium nr 6
rm(list=ls())
# Przyk³ad 6.1
x <- c(100,50,20,10,5)
p1 <- c(0.5, 0.2, 0.2, 0.05, 0.05)
chisq.test(x, p = p1)
p2 <- c(0.5, 0.3, 0.1, 0.05, 0.05)
chisq.test(x, p = p2)
p <- x/sum(x)
chisq.test(x, p = p)
plot(p)
lines(p1, col="red")
lines(p2, col="blue")
# Przyk³ad 6.2
h <- hist(rpois(200, lam = 3), breaks = (0:15)-0.5)
chisq.test(h$counts, p = dpois(h$mids, lam = 3), rescale.p = TRUE)
plot(h$mids, h$density)
#lines(h$mids, dpois(h$mids, lam = 3))
lines(h$mids, dpois(h$mids, lam = 3), col="red", lwd=2)
rm(list=ls())
# Przyk³ad 6.3
x <- rpois(100, lam = 5)
#hist(x)
y <- rpois(100, lam = 2)
#ks.test(x, y)
#print(ks.test(x, "ppois", lam = 5))
x <- rnorm(100)
y <- rnorm(100)
#ks.test(x, y)
y <- rnorm(100, 0, 2)
#ks.test(x, y))
#print(ks.test(x, "pnorm", 0, 1))
# Przyk³ad 6.4
shapiro.test(rnorm(100))
shapiro.test(rnorm(100, 0, 5))
shapiro.test(runif(100, 0, 1))
wilcox.test(rnorm(100))
wilcox.test(rnorm(100, 1, 2), mu = 1)
wilcox.test(rnorm(100, 1, 2), mu = 2)
# Przyk³ad 6.5
x <- c(1,2,3,4,5)
y <- c(2,4,1,2,2)
cor(x, y)
# Przyk³ad 6.6
cor(x, y, method="spearman")
cor(rank(x), rank(y))
# Przyk³ad 6.7
z <- c(0, 1, 1, 0, 1)
df <- data.frame(x, y, z)
cor(df)
# Przyk³ad 6.8
library(corrplot)
corrplot(cor(df))
# Przyk³ad 6.9
cor.test(x, y)
# Przyk³ad 6.10
x <- c(rep("fizyk", 55), rep("humanista", 149))
y <- c(rep("nie pracuje", 7),rep("pracuje", 48),rep("nie pracuje", 45),rep("pracuje", 104))
T <- table(x, y)
T
chisq.test(T)
Te <- chisq.test(T)$expected
Te
Te / sum(Te)
# Przyk³ad 6.12
Tx <- apply(T, 1, sum) / sum(T)
Ty <- apply(T, 2, sum) / sum(T)
Tx %o% Ty
T / sum(T)