-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorr.R
39 lines (24 loc) · 818 Bytes
/
corr.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
corr <- function(directory, threshold=0){
setwd(directory)
file <- data.frame(list.files(pattern = "\\.csv$"))
dateien<-as.character(file[,1])
alldata<-read.csv(dateien[1])
gute<-alldata[!is.na(alldata[,2]) & !is.na(alldata[,3]),]
ergebnis<-data.frame()
if (dim(gute)[1]> threshold){
ergebnis <- cor(gute[,2], gute[,3])
}
#ergebnis<-data.frame(gute)
if(length(dateien)>1){
for(i in 2:length(dateien)){
alldata<-read.csv(dateien[i])
gute<-alldata[!is.na(alldata[,2]) & !is.na(alldata[,3]),]
if (dim(gute)[1]> threshold){
ergebnis<-rbind(ergebnis,cor(gute[,2], gute[,3]))
}
}
}
#ergebnis<-cbind(id, ergebnis)
#gute
ergebnis
}