我有很多股票指数数据框。每个都有一个价格栏 这是一个简单的例子
elem.classList.toggle("isShown");
我将它们放在列表中,并且我想使用索引名称作为前缀来创建它们的日志返回。我只能使用以下命令创建日志返回列:
index1 <- c(2,3,5)
colnames(index1) <- "price"
index2 <- c(3,5,6)
colnames(index2) <- "price"
我想要的是
indexList <- list(index1,index2)
indexList <- lapply(indexList, function(i) {
i <- i %>% mutate(log.ret = c(diff(log(price)),NA))
} )