gpt4 book ai didi

R:for循环中的文本进度条

转载 作者:行者123 更新时间:2023-12-03 13:26:23 25 4
gpt4 key购买 nike

我有一些示例代码,其中包含一个 for 循环并创建了一些这样的图(我的实际数据创建了数千个图):

xy <- structure(list(NAME = structure(c(2L, 3L, 1L, 1L), .Label = c("CISCO","JOHN", "STEPH"), class = "factor"), ID = c(41L, 49L, 87L, 87L), X_START_YEAR = c(1965L, 1948L, 1959L, 2003L), Y_START_VALUE = c(940L,-1760L, 110L, 866L), X_END_YEAR = c(2005L, 2000L, 2000L, 2007L), Y_END_VALUE = c(940L, -1760L, 110L, 866L), LC = structure(c(1L,1L, 2L, 2L), .Label = c("CA", "US"), class = "factor")), .Names = c("NAME", "ID", "X_START_YEAR", "Y_START_VALUE", "X_END_YEAR", "Y_END_VALUE","LC"), class = "data.frame", row.names = c(NA, -4L))

ind <- split(xy,xy$ID) # split by ID for different plots

# Plots
for (i in ind){
xx = unlist(i[,grep('X_',colnames(i))])
yy = unlist(i[,grep('Y_',colnames(i))])
fname <- paste0(i[1, 'ID'],'.png')
png(fname, width=1679, height=1165, res=150)
par(mar=c(6,8,6,5))
plot(xx,yy,type='n',main=unique(i[,1]), xlab="Time [Years]", ylab="Value [mm]")
i <- i[,-1]
segments(i[,2],i[,3],i[,4],i[,5],lwd=2)
points(xx, yy, pch=21, bg='white', cex=0.8)
dev.off()
}

要查看 for 循环的进度,我有兴趣将进度条合并到我的代码中。正如我从 R 文档中发现的那样,有 txtProgressBar http://stat.ethz.ch/R-manual/R-patched/library/utils/html/txtProgressBar.html
从该页面的示例中,我了解到您必须将 for 循环写入一个函数中才能在之后调用它,而我正在为我的示例而苦苦挣扎。

如何在 for 循环中实现进度条?

最佳答案

要使进度条正常工作,您需要一个数字来跟踪您的进度。作为一般规则,这是我更喜欢使用 for 的原因之一 (i in 1:length(ind))而不是直接把我想要的对象放在那里。或者,您只需创建另一个 stepi您所做的变量 stepi = stepi + 1在每次迭代中。
您首先需要在循环外创建进度条对象

pb = txtProgressBar(min = 0, max = length(ind), initial = 0) 
然后在里面你需要随着每次迭代更新
setTxtProgressBar(pb,stepi)
或者
setTxtProgressBar(pb,i)
请记住关闭进度条以输出换行符。从文档:

The progress bar should be closed when finished with: this outputs thefinal newline character.


只需在循环末尾添加:
close(pb)
如果循环也有 print,这将很糟糕。里面的命令

关于R:for循环中的文本进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26919787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com