search for: progbar

Displaying 2 results from an estimated 2 matches for "progbar".

Did you mean: probar
2006 May 22
1
rerender tcltk toplevel
...) tclvalue(prog) <- i*2 } When I combine both approaches and add the label to a toplevel that already contains the progress bar updating the label works: tt <-tktoplevel() tkwm.geometry(tt, "250x140") prog <- tclVar("0") label <- tklabel(tt, textvariable=prog) progBar <- tkwidget(tt, "ProgressBar", variable=prog) tclRequire("BWidget") tkgrid(progBar) tkgrid(label) for(i in 1:50) { tmp <- rnorm(1e+05) tclvalue(prog) <- i*2 } Is there a way to explicitly rerender a tcltk toplevel? There must be one since the ProgressBar widge...
2018 Mar 18
0
rdwd package error: invalid file argument raised by readDWD
...dataDWD(file = ftpURL, dir = "stella/input/",sleep = 0) > fooDat <- readDWD(ftpFile, + meta = substr(ftpFile, nchar(ftpFile) - 3, 10000) == ".txt", + fread = FALSE, minfo = FALSE, format = NA, tz = "GMT", + progbar = TRUE) *Error in file.exists(file) : invalid 'file' argument* I want to read all txt file in R for further analysis. But I got an error above. How to resolve this error? Any instance help? Thank you. PS: here is my session information: > sessionInfo() R version 3.4.3 (2017-11-30) Pl...