search for: disroot

Displaying 20 results from an estimated 66 matches for "disroot".

Did you mean: dfsroot
2024 Apr 08
0
duplicated() on zero-column data frames returns empty
...protection for old code could be just a warning that can be turned off with a call to options. The new documentation should be more explicit. Regards, Jorgen. From: Mark Webster <markwebster204 at yahoo.co.uk> To: Jorgen Harmse <jharmse at roku.com>, Ivan Krylov <ikrylov at disroot.org> Cc: "r-help at r-project.org" <r-help at r-project.org> Subject: Re: [R] duplicated() on zero-column data frames returns empty Message-ID: <603481690.9150754.1712522666289 at mail.yahoo.com> Content-Type: text/plain; charset="utf-8" duplicated.matrix is an...
2024 Apr 18
2
Import multiple tif raster
...ng, choose "File | Save with Encoding..." from the main menu. > Kind regards Sibylle -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of SIBYLLE ST?CKLI via R-help Sent: Thursday, April 18, 2024 6:48 PM To: 'Ivan Krylov' <ikrylov at disroot.org>; 'SIBYLLE ST?CKLI via R-help' <r-help at r-project.org> Subject: Re: [R] Import multiple tif raster Dear Ivan Thanks a lot. I tried now to provide the full path. However probably the "?" in the path produces the error, would that be possible? > #first import a...
2024 Apr 18
1
Import multiple tif raster
...esktop\NCCS_Impacts_Lot2_2022\InVEST\Species_Input\valpar_bee_presence", pattern='.tif$', all.files= T, full.names= T) Error: '\U' used without hex digits in character string (<input>:1:35) Kind regards Sibylle -----Original Message----- From: Ivan Krylov <ikrylov at disroot.org> Sent: Thursday, April 18, 2024 2:39 PM To: SIBYLLE ST?CKLI via R-help <r-help at r-project.org> Cc: sibylle.stoeckli at gmx.ch Subject: Re: [R] Import multiple tif raster ? Thu, 18 Apr 2024 11:08:33 +0200 SIBYLLE ST?CKLI via R-help <r-help at r-project.org> ?????: > > #...
2024 Apr 26
2
R 4.4.0 has version of Matrix 1.7-0, but it's not available on CRAN
On Fri, Apr 26, 2024 at 1:06?PM Ivan Krylov <ikrylov at disroot.org> wrote: > > On Fri, 26 Apr 2024 12:32:59 +0200 > Martin Maechler <maechler at stat.math.ethz.ch> wrote: > > > Finally, I'd think it definitely would be nice for > > install.packages("Matrix") to automatically get the correct > > Matrix versio...
2024 Jan 13
1
Strange results : bootrstrp CIs
...t) func= function(data, idx) { coef(lm(Score~ Time + factor(Country),data=data[idx,])) } B= boot(e, func, R=1000) ? boot.ci(B, index=2, type="perc") ############################################################# Le samedi 13 janvier 2024 ? 21:56:58 UTC+1, Ivan Krylov <ikrylov at disroot.org> a ?crit : ? Sat, 13 Jan 2024 20:33:47 +0000 (UTC) varin sacha via R-help <r-help at r-project.org> ?????: > coef(lm(Score~ Time + factor(Country)),data=data[idx,]) Wrong place for the data=... argument. You meant to give it to lm(...), but in the end it went to coef(...)....
2024 Jan 13
1
Strange results : bootrstrp CIs
...ta=data[idx,])) > } > B= boot(e, func, R=1000) > > boot.ci(B, index=2, type="perc") > ############################################################# > > > > > > > > > Le samedi 13 janvier 2024 ? 21:56:58 UTC+1, Ivan Krylov <ikrylov at disroot.org> a ?crit : > > > > > > ? Sat, 13 Jan 2024 20:33:47 +0000 (UTC) > > varin sacha via R-help <r-help at r-project.org> ?????: > >> coef(lm(Score~ Time + factor(Country)),data=data[idx,]) > > > Wrong place for the data=... argument. You me...
2023 Feb 27
1
Auth variables unknown variable -- about to go crazy
Hi everyone, I'm trying to configure my email server to encrypt mails on a per user basis. I have the following in my conf: mail_plugins = $mail_plugins mail_crypt mail_attribute_dict = file:%h/Mail/dovecot-attributes plugin { mail_crypt_curve = secp521r1 mail_crypt_save_version = 2 mail_crypt_require_encrypted_user_key = yes mail_crypt_private_password =
2023 Feb 28
0
Auth variables unknown variable -- about to go crazy
An embedded message was scrubbed... From: efeizbudak <efeizbudak at disroot.org> Subject: Re: Auth variables unknown variable -- about to go crazy Date: Tue, 28 Feb 2023 06:51:34 -0500 Size: 3462 URL: <https://dovecot.org/pipermail/dovecot/attachments/20230228/5046a67e/attachment.eml> -------------- next part -------------- A non-text attachment was scrubbed... Na...
2024 Jan 13
1
Strange results : bootrstrp CIs
? Sat, 13 Jan 2024 20:33:47 +0000 (UTC) varin sacha via R-help <r-help at r-project.org> ?????: > coef(lm(Score~ Time + factor(Country)),data=data[idx,]) Wrong place for the data=... argument. You meant to give it to lm(...), but in the end it went to coef(...). Without the data=... argument, the formula passed to lm() picks up the global variables inherited by the func() closure.
2024 Mar 22
1
Error message
? Fri, 22 Mar 2024 14:02:09 -0500 Val <valkremk at gmail.com> ?????: > X2.R > load("X1.RData") > > I am getting this error message: > Error in load("X1.RData", : > bad restore file magic number (file may be corrupted) .. no data > loaded. This error happens very early when R tries to load the file, right at the first few bytes. Is
2024 Mar 22
1
Error message
Yes, X1.RData is large(more than 40M rows) . How do I get the first few bytes? On Fri, Mar 22, 2024 at 2:20?PM Ivan Krylov <ikrylov at disroot.org> wrote: > > ? Fri, 22 Mar 2024 14:02:09 -0500 > Val <valkremk at gmail.com> ?????: > > > X2.R > > load("X1.RData") > > > > I am getting this error message: > > Error in load("X1.RData", : > > bad restore file magic n...
2024 Mar 22
1
Error message
? Fri, 22 Mar 2024 14:31:17 -0500 Val <valkremk at gmail.com> ?????: > How do I get the first few bytes? What does file.info('X1.RData') say? Do you get any output if you run print(readBin('X1.RData', raw(), 128))? If this is happening on a Linux or macOS machine, the operating system command xxd -l 128 X1.RData will give the same output in a more readable manner,
2024 Mar 22
1
Error message
...493d adc9 ea4a ...Ho. .o.I=...J 00000050: 0a2b b7cf a416 336e 5e4e abc5 9874 7be3 .+....3n^N...t{. 00000060: 5a5a 3405 fe35 8a3d ad80 0dc0 ca3e ea7a ZZ4..5.=.....>.z 00000070: e628 b220 ee50 0b9f 3a81 e971 8a19 4f54 .(. .P..:..q..OT On Fri, Mar 22, 2024 at 2:36?PM Ivan Krylov <ikrylov at disroot.org> wrote: > > ? Fri, 22 Mar 2024 14:31:17 -0500 > Val <valkremk at gmail.com> ?????: > > > How do I get the first few bytes? > > What does file.info('X1.RData') say? > > Do you get any output if you run print(readBin('X1.RData', raw(), 128)...
2024 Mar 27
1
paths capability FALSE on devel?
? Wed, 27 Mar 2024 11:28:17 +0100 Alexandre Courtiol <alexandre.courtiol at gmail.com> ?????: > after installing R-devel the output of > grDevices::dev.capabilities()$paths is FALSE, while it is TRUE for R > 4.3.3 Your system must be missing Cairo development headers, making x11() fall back to type = 'Xlib': $ R-devel -q -s -e 'x11();
2024 Mar 27
1
paths capability FALSE on devel?
On Wed, 27 Mar 2024 at 12:19, Ivan Krylov <ikrylov at disroot.org> wrote: > ? Wed, 27 Mar 2024 11:28:17 +0100 > Alexandre Courtiol <alexandre.courtiol at gmail.com> ?????: > > > after installing R-devel the output of > > grDevices::dev.capabilities()$paths is FALSE, while it is TRUE for R > > 4.3.3 > > Your system mu...
2024 Apr 18
1
Import multiple tif raster
? Thu, 18 Apr 2024 11:08:33 +0200 SIBYLLE ST?CKLI via R-help <r-help at r-project.org> ?????: > > #to check the index numbers of all imported raster list elements > > allrasters > list() > > > > #call single raster element > > allrasters[[1]] > Error in allrasters[[1]] : subscript out of bounds `allrasters` is an empty list, so it doesn't have a
2024 Apr 26
1
R 4.4.0 has version of Matrix 1.7-0, but it's not available on CRAN
On Fri, 26 Apr 2024 12:32:59 +0200 Martin Maechler <maechler at stat.math.ethz.ch> wrote: > Finally, I'd think it definitely would be nice for > install.packages("Matrix") to automatically get the correct > Matrix version from CRAN ... so we (R-core) would be grateful > for a patch to install.packages() to achieve this Since the binaries offered on CRAN are
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
...ntil f() is evaluated and reaches this point. If `f` was a function, it would be possible to trace() it, inserting a call to debug(g) after it's created. How should I call trace() if f was a function? Best regards, Iago ________________________________ De: Ivan Krylov <ikrylov at disroot.org> Enviat el: divendres, 12 d??abril de 2024 14:38 Per a: Iago Gin?? V??zquez <iago.gine at sjd.es> A/c: r-help at r-project.org <r-help at r-project.org> Tema: Re: [R] Debugging functions defined (locally) inside another functions ?? Fri, 12 Apr 2024 12:15:07 +0000 Iago Gin?? V??...
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
? Fri, 12 Apr 2024 12:15:07 +0000 Iago Gin? V?zquez <iago.gine at sjd.es> ?????: > f <- function(whatever){ > ... > g <- function(whatever2){ > ... > } > ... > } > > If I wanted to debug some thing directly inside f I would do > debug(f). But this does not go inside g code. On the other hand, > debug(g) does not work as g is not a
2024 Feb 26
1
igraph_vertex
...ult layout > dev.off() TIFFOpen: figures/AES_network_bymembership.tiff: Cannot open. RStudioGD 2 Warning message: In dev.off() : unable to open TIFF file 'figures/AES_network_bymembership.tiff' Kind regards Sibylle -----Original Message----- From: Ivan Krylov <ikrylov at disroot.org> Sent: Monday, February 26, 2024 10:15 AM To: SIBYLLE ST?CKLI via R-help <r-help at r-project.org> Cc: sibylle.stoeckli at gmx.ch Subject: Re: [R] igraph_vertex ? Mon, 26 Feb 2024 09:02:56 +0100 SIBYLLE ST?CKLI via R-help <r-help at r-project.org> ?????: > In the following...