Displaying 20 results from an estimated 200 matches similar to: "getWinProgressBar does not return previous value"
2010 Feb 10
1
R crashes when setWinProgressBar is give a numeric value for label argument
This problem can be seen by the following commands:
> pb <- winProgressBar(max=1000, label='0')
> b <- 1
> setWinProgressBar(pb, b, label=b)
This set of commands (on windows of course, XP in this case) causes R to crash.
This is not strictly a bug since the documentation states that the label argument should be a character string and using as.character(b) does work
2016 Apr 12
2
Procesos paralelos
Hola:
Vuelvo a la carga con algo que resolví hace años y que ahora me ha dejado de funcionar y no consigo arreglar. A ver si alguien me sugiere algún enfoque o directamente la solucion.
Utilizo R en muchos procesos ETL y la cuestión es que me encuentro con que tengo que hacer inserts en un BBDD de SQL Server de varios miles (a veces millones de registros) que mientras R las realiza parece que
2016 Apr 12
2
Procesos paralelos
Hola, ¿qué tal?
Si la base de datos de destino es SQL Server, ¿por qué no pruebas con
la función dbBulkCopy del paquete
https://github.com/agstudy/rsqlserver? Debería poder cargar millones
de registros en segundos. Al menos, en una única transacción en lugar
de múltiples como con sqlSave.
Un saludo,
Carlos J. Gil Bellosta
http://www.datanalytics.com
El día 12 de abril de 2016, 11:55,
2016 Apr 12
2
Procesos paralelos
Estimado Gilsanz
Algo que puede ser, ¿tiene instalado tcltk en Windows?
Yo ante un problema parecido lo solucioné realizando un contador, en mi caso conozco la cantidad de consultas, entonces simplemente ?imprimo? en pantalla 1 de 100, 2 de 100, etc. No es gráfico, pero R me informa dos cosas, que está trabajando y cuánto falta, feo a la vista pero muy simple.
Javier Rubén Marcuzzi
De:
2013 Feb 12
3
improving/speeding up a very large, slow simulation
Dear R help;
I'll preface this by saying that the example I've provided below is pretty
long, turgid, and otherwise a deep dive into a series of functions I wrote
for a simulation study. It is, however, reproducible and self-contained.
I'm trying to do my first simulation study that's quite big, and so I'll
say that the output of this simulation as I'd like it to be is
2013 Jun 19
2
Barra de progreso
Gracias, Daniel!.
No veo claro cómo adaptarlo (en mi caso se trata de un apply de tal modo que para cada item de la lista leo el fichero de datos cuyo nombre se indica, y en total leo tantos ficheros como elementos hay en la lista). Le daré una vuelta a ver si consigo aplicarlo bien y si no en tal caso os consulto.
Saluditos!
Eva
________________________________
De: daniel
2012 Feb 03
2
Clear last x entries of R console
Hi All,
I am trying to build in a progress-tracker into my loops that let me have a
sense of their progress. I'd like to be able to output to screen a series of
periods "...." etc. for each completion of the loop, but I <don't> want to
build a pyramid, e.g.
.
..
...
....
etc. So I need to be able to delete <the last line> of the console entry to
accomplish this.
2013 Jun 20
1
Barra de progreso
Hola, Carlos:
Gracias!. Muy buena idea!. No conocía ese paquete. Se entiende que funciona también en Linuz y Mac, ¿verdad?.
Un saludo.
Eva
________________________________
De: Carlos Ortega <cof@qualityexcellence.es>
CC: daniel <daniel319@gmail.com>; "R-help-es@r-project.org" <R-help-es@r-project.org>
Enviado: Miércoles 19 de junio de 2013 22:42
Asunto: Re:
2008 Sep 15
2
Cross-platform function availability
Hi all,
Is there any way to determine which functions are available on which
platforms? For example, winProgr essBar (and related functions) are
only available on Windows, but what about tkProgressBar and
txtProgressBar? Is there any way to figure out which functions are
only available on certain platforms, without installing R on that
platform and checking?
Thanks,
Hadley
--
2011 Apr 09
2
A question about "txtProgressBar" function
Hi,
I tried to add a progress bar to my script, but it seems the "txtProgressBar" function will wipe out what I want to print before it(for example - the "Hello" in following script), and the parameters "title" and "label" do not work either. How can I put a title for the progress bar? or is there any other better function I can use?
testit <-
2008 Apr 30
3
How to stop buffering of "cat"
Hi All,
My R code takes very long time to finish the processing. I want to see at
what stage the script is running. So I wrote some output messages using cat.
But instead of displaying the cat messages at different stages they are
buffered and displayed in the end when entire processing is done.
Can you please suggest how to stop this buffering or some alternative way to
display messages
Thank
2013 Jun 18
3
Barra de progreso
Buenas tardes:
¿Cuál es el modo más adecuado de incorporar una barra de progreso en la ventana de comandos?. Es para acompañar a un proceso de lectura de ficheros de datos...
Necesitaba que la solución fuese multiplataforma.
Gracias.
Un saludo.
Eva
[[alternative HTML version deleted]]
2011 Mar 15
2
Feature request: txtProgressBar with ability to write to arbitrary stream
Hi all,
I use txtProgressBar to monitor progress of large computations. What I
miss is the ability to redirect the progress bar to a stream other than
stdout, specifically to the message stream. This would be useful for
running Sweave scripts: When redirected to stderr, the bar could be
visible even though console output is diverted to the output file (and
there would be no cluttering of the
2013 Jun 18
0
Barra de progreso
# Fuente:
http://ryouready.wordpress.com/2009/03/16/r-monitor-function-progress-with-a-progress-bar/
library(utils)
total <- 20
# create progress bar
pb <- txtProgressBar(min = 0, max = total, style = 3)
for(i in 1:total){
Sys.sleep(0.1)
# update progress bar
setTxtProgressBar(pb, i)
}
close(pb)
library(tcltk)
total <- 20
# create progress bar
pb <- tkProgressBar(title =
2013 Jun 19
0
Barra de progreso
Hola Eva,
Esta puede ser otra alternativa:
http://cran.r-project.org/web/packages/pbapply/pbapply.pdf
Saludos,
Carlos Ortega
www.qualityexcellence.es
El 19 de junio de 2013 22:06, Eva Prieto Castro <evapcastro@yahoo.es>escribió:
> Gracias, Daniel!.
>
> No veo claro cómo adaptarlo (en mi caso se trata de un apply de tal modo
> que para cada item de la lista leo el fichero de
2012 Aug 29
1
Problem Installing a Package
I have just installed the latest version of R on a openSUSE 12.1 system
running on an ORacle VM VirtualBox and have encountered a problem with
installing ChemometricsWithR. Here is the output:
> library("compiler")
> install.packages("ChemometricsWithR")
Installing package(s) into ?/home/computation/R/x86_64-unknown-linux-gnu-
library/2.15?
(as ?lib? is unspecified)
2012 Aug 24
1
Error while installing gsubfn_0.6-4.tar.gz for R 2.15.1
Hi,
I am getting the follwoing error while installing gsubfn_0.6-4.tar.gz library for R. R version is 2.15.1 and i am installing on Redhat linux version 2.6.18-238.9.1.el5 (mockbuild at x86-002.build.bos.redhat.com<mailto:mockbuild at x86-002.build.bos.redhat.com>) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-50))
* installing to library ?/home/mapred/installables/R/library?
* installing
2011 Dec 05
0
Problemas al cargar Rcmdr
Buenas a todos en la lista. Aunque los sigo de cerca nunca he
participado mas allá de algunas ocasión.
Ahora me surgió este problema. Hasta hace poco solo había usado distros
Debian-like o Arch pero hace unos días se me dio por probar Sabayon,
puesto que andaba en busca de algo rolling release y no quería Arch.
La cosa, para hacerla corta, es que instalé Sabayon con KDE.
Conseguí arreglar un
2009 Apr 22
1
Installation fails (PR#13669)
Full_Name: Dieter Kadelka
Version: 2.9.0
OS: Linux
Submission from: (NULL) (129.13.115.98)
Hallo,
my system is
Linux mspcka3 2.6.5-7.276-default #1 Mon Jul 24 10:45:31 UTC 2006 i686
GNU/Linux
with gcc-4.3.3
Installation of R-2.9.0 fails, R-2.8.1 is o.k.
After
configure
make
I get
...
WARNING: ignoring environment value of R_HOME
>>> Building/Updating help pages for package
2013 May 09
0
Barra de progreso en RODBC
Hola:
Hace como un mes pregunte si se podía desarrollar una barra de progreso
que informara del progreso de una subida de datos a SQL Server desde R.
Miguel Ángel me dio una orientacion de como enfocar el problema y al final
lo he conseguido hacer usando el paquete snowfall.
Ahora bien hay una parte del código que, aunque funciona no entiendo muy
bien como, porque "adapte" un código