优化R中的循环

时间:2014-02-13 19:10:17

标签: r optimization vector

我正在编写此代码来浏览数据并比较值。这是我的代码:

for (t in 1:(length(prob_times_start_new))){
count3 <- 0
testcount <- 0
dates <- c()
count2 <- 0
for(n in 1:length(ob_times)){
    issue <- substr(prob_times_start_new[t],1,10)
    issue2 <- substr(prob_times_end_new[t],1,10)
    count2 <- count2 + 1
    if (grepl(issue,ob_times[n])|grepl(issue2,ob_times[n])){
        if ((ob_times[n] >= prob_times_start_new[t]) & (ob_times[n] <= prob_times_end_new[t])){
            count3 <- count3 + 1}
        if ((ob_times[n] >= prob_times_start_new[t]) & (ob_times[n] <= prob_times_end_new[t]) & (count3 <= 1)){

            if (probs_new[t] == "PROB30"){
                num_of_hits30 <- num_of_hits30 + 1}
            else if (probs_new[t] == "PROB40"){
                num_of_hits40 <- num_of_hits40 + 1}
            }
        if ((ob_times[n]<prob_times_start_new[t]) | (ob_times[n] > prob_times_end_new[t])){
            testcount <- testcount + 1}
        dates <- c(dates,ob_times[n])
        }

    nums <- length(ob_times)
    if ((!(grepl(issue,ob_times[nums])))&(!(grepl(issue2,ob_times[1])))){

        if (((prob_times_start_new[t]>ob_times[nums])|(prob_times_end_new[t]<ob_times[1]))&count2<=1){

            if (probs_new[t] == "PROB30"){
                num_of_false30 <- num_of_false30 + 1}
            else if (probs_new[t] == "PROB40"){
                num_of_false40 <- num_of_false40 + 1}}}}
if((!(is.null(dates)))){
    if((testcount==length(dates))){

        if (probs_new[t] == "PROB30"){
            num_of_false30 <- num_of_false30 + 1}
        else if (probs_new[t] == "PROB40"){
            num_of_false40 <- num_of_false40 + 1}}}


for (k in 2:length(ob_times)){
    if(((!(grepl(issue,ob_times[k])))&(!(grepl(issue2,ob_times[k]))))&((!(grepl(issue,ob_times[k-1]))) & (!(grepl(issue,ob_times[k-1]))))){
        if ((prob_times_start_new[t]>ob_times[k-1]) & (prob_times_start_new[t]<ob_times[k]) & (prob_times_end_new[t]>ob_times[k-1]) & (prob_times_end_new[t]<ob_times[k])){

            if (probs_new[t] == "PROB30"){
                num_of_false30 <- num_of_false30 + 1}
            else if (probs_new[t] == "PROB40"){
                num_of_false40 <- num_of_false40 + 1}}}}}

prob_times_start_new和prob_times_end_new和ob_times是具有此格式字符串的向量,

"2010-03-12 22:12:20" (Year-Month-Day Hour:Minute:Second)

probs_new只是一个带有“PROB30”或“PROB40”的向量 num_of_false30,num_of_false40,num_of_hits30,num_of_hits40是从0开始并根据代码中的条件计数的整数。

我知道如果您不理解任何代码,这是很多代码并提出问题。 这应该做的是搜索向量并检查ob_times中的任何内容是否落在开始和结束时间间隔之间,如果它是一个命中,如果不是,则它是错误的。

现在,当我运行此代码时,它可以正常运行但需要大约2分钟才能完成所有这些操作。如果我能让它更快,那将节省我很多时间。我看到一些关于vertorization的帖子,但我自己试过这样做但是运气不好。如果有人可以帮助我,我将不胜感激。提前致谢

1 个答案:

答案 0 :(得分:1)

在使用之前分配向量。例如,你有

dates <- c()

将其替换为

dates <- vector('Date', length)

无论长度如何。然后,不是连接日期,而是访问元素

dates[n] <- value

这将为您带来最大的收益。