-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspearman correlation.R
61 lines (33 loc) · 1.22 KB
/
spearman correlation.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
if(!require(devtools)) install.packages("devtools")
devtools::install_github("kassambara/ggpubr")
1
library(ggpubr)
library(readxl)
wohc <- read_excel("wohc1.xlsx")
### UNPD is a factor
## is their any effect of UNDP on site
## UNDP effect on collobration
## ordinary as factor (catagorical)
## box plots
corres <- wohc$corresponding
# Shapiro-Wilk normality test for mpg
shapiro.test(wohc$corresponding)
shapiro.test(wohc$site)
shapiro.test(wohc$collobration)
shapiro.test(wohc$UNDP)
# visulize the normality
ggqqplot(wohc$site, ylab = "Study Site")
ggqqplot(wohc$UNDP, ylab = "UNDP")
ggscatter(wohc, x = "UNDP", y = "site",
add = "reg.line", conf.int = TRUE,
cor.coef = TRUE, cor.method = "spearman",
xlab = "Study Sites", ylab = "UNDP")
ggqqplot(wohc$UNDP, ylab = "UNDP")
ggqqplot(wohc$corresponding, ylab = "corresponding authors")
ggscatter(wohc, x = "UNDP", y = "site",
add = "reg.line", conf.int = TRUE,
cor.coef = TRUE, cor.method = "spearman",
xlab = "Study Site", ylab = "UNDP")
res3 <-cor.test(wohc$site, wohc$UNDP, method = "spearman")
res3
plot(site,UNDP, method = "spearman")