search for: renv

Displaying 15 results from an estimated 15 matches for "renv".

Did you mean: env
2020 Jun 10
4
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
Dear R Developers, I am having an issue with the renv package and R 4.0.1, which I suspect is related to base R and not the renv package itself, as with R 3.6.3 such an "error" does not appear. The error is raised by a file.exists() path, and path "C:\Users\J-tel\Documents", which in R 3.6.3 is read correctly, but in R 4.0.1 fails...
2020 Jun 22
2
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
...se"). Regards, Yihui On Thu, Jun 11, 2020 at 3:11 AM Tomas Kalibera <tomas.kalibera at gmail.com> wrote: > > > Dear Juan, > > I don't see what is the problem from your report. Please try to create a > minimal but complete reproducible example that does not use the renv > package. Perhaps you could use the R debugger (e.g. via > options(error=recover)) to find out what is the argument that > file.exists() has been called with. And then you could try just to call > file.exists() directly with that argument to trigger the problem. > > It may be tha...
2020 Jun 10
0
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
Dear Juan, I don't see what is the problem from your report. Please try to create a minimal but complete reproducible example that does not use the renv package. Perhaps you could use the R debugger (e.g. via options(error=recover)) to find out what is the argument that file.exists() has been called with. And then you could try just to call file.exists() directly with that argument to trigger the problem. It may be that the argument has been c...
2020 Jun 10
1
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
Hi Juan, For bug reports to R, you should attempt to create a minimally-reproducible example, using only R's builtin facilities and not any other addon packages. Given your report, it's not clear whether the issue lies within renv or truly is caused by a change in R 4.0.0. Also note that you have not supplied a minimally reproducible example. If at all possible, you should be able to supply some code that reproduces the issue -- ideally, one should be able to just copy + paste the code into an R session to see the issue ari...
2020 Jun 22
0
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
...ui > > On Thu, Jun 11, 2020 at 3:11 AM Tomas Kalibera <tomas.kalibera at gmail.com> wrote: >> >> Dear Juan, >> >> I don't see what is the problem from your report. Please try to create a >> minimal but complete reproducible example that does not use the renv >> package. Perhaps you could use the R debugger (e.g. via >> options(error=recover)) to find out what is the argument that >> file.exists() has been called with. And then you could try just to call >> file.exists() directly with that argument to trigger the problem. >&gt...
2023 Dec 05
2
Problemas para instalar Shiny en Mac
...ualizar R a una versión más reciente (con la 3.6 es posible que esto te llegue a pasar con más paquetes, la versión actual es 4.3.2). Si por tus requerimientos tienes que seguir usando la 3.6, entonces como dice Eric debes controlar también las versiones de los paquetes, y mejor aún si lo haces con renv (https://rstudio.github.io/renv/articles/renv.html) Emilio Emilio L. Cano Tel: 665 676 225 http://emilio.lcano.com > El 5 dic 2023, a las 4:20, Eric <ericconchamunoz en gmail.com> escribió: > > Es un problema de dependencias, es decir, algunos de los paquetes necesarios para...
2020 Jun 24
3
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
...11, 2020 at 3:11 AM Tomas Kalibera <tomas.kalibera at gmail.com> wrote: > >> > >> Dear Juan, > >> > >> I don't see what is the problem from your report. Please try to create a > >> minimal but complete reproducible example that does not use the renv > >> package. Perhaps you could use the R debugger (e.g. via > >> options(error=recover)) to find out what is the argument that > >> file.exists() has been called with. And then you could try just to call > >> file.exists() directly with that argument to trigger...
2019 Mar 28
2
pigeonhole tests crashing in deleteheader.svtest
...0007f992514fdd2 in smtp_address_clone (pool=0x7f992528dce0 <static_system_pool>, src=src at entry=0x7ffd30eace10) at smtp-address.c:632 #2 0x000055f7330916b3 in testsuite_message_set_data (mail=0x55f73486f848) at testsuite-message.c:96 #3 0x000055f7330918b9 in testsuite_message_set_file (renv=renv at entry=0x55f734856ac0, file_path=<optimized out>) at testsuite-message.c:139 #4 0x000055f7330931cc in testsuite_smtp_get (renv=renv at entry=0x55f734856ac0, index=<optimized out>) at testsuite-smtp.c:171 #5 0x000055f73309566c in cmd_test_message_smtp_operation_execute (renv...
2007 Nov 25
1
Package Building under Windows with MikTeX 2.6
...to create such a file $retval = file_path($R::Vars::TMPDIR, $pat . $$ . sprintf("%05d", rand(10**5))); croak "Cannot find unused name for temporary file" if($n++ > 1000); } $retval; } ### * R_system sub R_system { my ($cmd, $Renv) = @_; my $tmpf = R_tempfile(); if($R::Vars::OSTYPE eq "windows") { open(tmpf, "> $tmpf") or die "Error: cannot write to '$tmpf'\n"; print tmpf "$cmd $Renv\n"; close tmpf; $res = system("sh $tmpf");...
2023 Dec 05
1
Problemas para instalar Shiny en Mac
Es un problema de dependencias, es decir, algunos de los paquetes necesarios para instalar Shiny no estan aun disponibles en la arquitectura y la version necesaria ... yo lo resolvi haciendo un downgrade de la version del paquete principal que quieres instalar, en este caso Shiny ... asi, si usas una version mas antigua de Shiny, entonces si estaran disponibles los paquetes que necesitas en la
2008 Aug 25
8
Two envelopes problem
...<- matrix(0, ncol=2, nrow=n) env[,1] <- rdist(n, ...) # first envelope has `x' env[,2] <- r*env[,1] # second envelope has `r*x' # randomize de envelopes, so we don't know which one from # the pair has `x' or `r*x' i <- as.logical(rbinom(n, 1, 0.5)) renv <- env renv[i,1] <- env[i,2] renv[i,2] <- env[i,1] return(renv) # return the randomized envelopes } # example, `x' follows an exponential distribution with E(x) = 10 # we do one million simulations n=1e6) env <- generateenv(r=2, rexp, n=1e6, rate=1/10) mean(env[,1]) # you...
2020 Apr 30
5
Instalar paquetes no disponibles para la versión actual
Buenas tardes. Tenía la versión 3.6.0 de R. Quería instalar el paquete edarf, pero decía que no estaba disponible para esa versión. Actualicé R a la versión 4.0.0, que creo que es la última, pero al tratar de reinstalar forestFloor, me dice que no está disponible para la versión 4.0.0. He abierto R 3.6.0 directamente, cliqueo install.packages("forestfloor") y ahora me dice que no está
2016 Apr 25
3
Kernel panic in dovecot-ee-lmtp on Debian 8
Hi list I just realized that that I don not receive all mails in my mailbox (running dovecot-ee 2.2.23.1-1 on Debian 8). On my frontend servers (running postfix) the queue fills up with mails that cannot be delivered via lmtp to my backend servers. The error message on the frontend is "lost connection with backend while sending data" When I checked the logs on the backend server I found
2009 Feb 02
1
sieve 0.1.2 problem with address and :regex
...=0x896b728 "antlr.org", val_size=9) at sieve-match.c:83 #3 0x080841c5 in sieve_address_match (addrp=0x8187a20, mctx=0x896b3d0, data=0x897f080 "antlr-interest-bounces at antlr.org") at sieve-address-parts.c:258 #4 0x0806a5fd in tst_address_operation_execute (op=0x8186688, renv=0x89861b4, address=0x89861a4) at tst-address.c:259 #5 0x080804b6 in sieve_interpreter_execute_operation (interp=0x8986190) at sieve-interpreter.c:437 #6 0x08080573 in sieve_interpreter_continue (interp=0x8986190, interrupted=0x0) at sieve-interpreter.c:464 #7 0x080806df in sieve_interpre...
2014 May 02
2
When the subject portion of an e-mail contains a control character, dovecot.sieve terminates unexpectatedly.
Hello. We have currently set dovecot.sieve to insert the text "[SPAM]" at the beginning of an e-mail's subject when it's X-Spam-Score is above 80%. After we set our system as stated the following errors occur: 1) When an e-mail's subject contains control characters like [Ctrl+V|^V], dovecot.sieve terminates with an error and an e-mail is not able to be sent. When a MIME