美文网首页
R语言函数循环导入excel

R语言函数循环导入excel

作者: lucier19981 | 来源:发表于2021-11-19 16:35 被阅读0次

    个股明细批量导入

    udf_DT_stock <- function(new_table = stock_day_all ,
    source_tb_name = "stock_day_all",
    date_init_mark = "20211108",
    date_mark_str = date_definite_list){
    new_table <- udf_DT(paste0(path_invest,source_tb_name,date_init_mark,".xlsx"))[0] # 数据末班导入
    new_table <- new_table[,stock_day:=""]

    for (i in (1:length( date_mark_str )) ){ # 导入100日数据
    new_table <- rbind(new_table,
    cbind(udf_DT(paste0(path_invest,"stock_day_all",date_mark_str[i],".xlsx")),
    stock_day= as.character(date_mark_str[i]) ) )
    }
    return(new_table) # 循环导入
    }

    相关文章

      网友评论

          本文标题:R语言函数循环导入excel

          本文链接:https://www.haomeiwen.com/subject/phcetrtx.html