Re: [Rd] paths capability FALSE on devel?

2024-03-27 Thread Alexandre Courtiol
On Wed, 27 Mar 2024 at 12:19, Ivan Krylov wrote: > В Wed, 27 Mar 2024 11:28:17 +0100 > Alexandre Courtiol пишет: > > > after installing R-devel the output of > > grDevices::dev.capabilities()$paths is FALSE, while it is TRUE for R > > 4.3.3 > > Your system

[Rd] paths capability FALSE on devel?

2024-03-27 Thread Alexandre Courtiol
thers running R devel and R 4.3.3 can replicate this behaviour and if there are obvious reasons why the observed change would be expected. Man thanks, Alex -- Alexandre Courtiol, www.datazoogang.de [[alternative HTML version deleted]] __ R-de

Re: [Rd] vignettes present in 2 folders or won't work

2020-11-01 Thread Alexandre Courtiol
ldignore file > are not. > > Duncan Murdoch > > On 01/11/2020 11:22 a.m., Alexandre Courtiol wrote: > > Dear all, > > > > I am struggling with an issue related to static vignettes: they work, but > > only when present in double in the tarball -- in the folder inst

[Rd] vignettes present in 2 folders or won't work

2020-11-01 Thread Alexandre Courtiol
a normal installation. If anyone knows of some _complete_ documentation about the ever troublesome topic of vignettes building in R, I would be very grateful too... Many thanks! Alex -- Alexandre Courtiol http://sites.google.com/site/alexandrecourtiol/home *"Science is the belief in the

Re: [Rd] "if" function in pure R?

2019-05-26 Thread Alexandre Courtiol
flow construct. Thus two questions remain: - is it possible to create a control-flow construct in pure R? - if yes, how? Anyone with more insights? Thanks On Mon, 27 May 2019 at 04:27, King Jiefei wrote: > Hi Alexandre, > > I'm not an R expert so this is only my personal thought: >

[Rd] "if" function in pure R?

2019-05-26 Thread Alexandre Courtiol
, for, while... that allow for call of the form fn(x) expr to work (see ?Control). -- Alexandre Courtiol http://sites.google.com/site/alexandrecourtiol/home *"Science is the belief in the ignorance of experts"*, R. Feynman [[alternative HTML versi

[Rd] Bug simulate.lm() --> needs credential to report it

2017-05-09 Thread Alexandre Courtiol
## ugly hack showing where the issue is new.y <- simulate(mod_glm)[, 1] mean(new.y) ## 10.13554 var(new.y) ## 0.8629975 # OK # -- Alexandre Courtiol http://sites.google.com/site/alexandrecourtiol/home *"Science is the belief in the ignorance of experts"*, R. Feynman

[Rd] potential bug in simulate.lm when gaussian(link != "identity")

2017-05-02 Thread Alexandre Courtiol
en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_3.4.0 tools_3.4.0 -- Alexandre Courtiol http://sites.google.com/site/alexandrecourtiol

[Rd] mget call can trigger C stack usage error

2016-09-05 Thread Alexandre Courtiol
Hi all, not sure if you will call this a bug or something else but the following silly call trigger a low level error: foo <- list(x=1) class(foo) <- "new" print.new <- function(x, ...) print(mget(names(formals( foo > Error: C stack usage 7969412 is too close to the

[Rd] fmod() is used for %%?

2012-08-21 Thread Alexandre Aguiar
Hi, Is the standard C math function fmod() used for R module operations? Could not find it in the sources. Thanks. -- Alexandre -- Alexandre Santos Aguiar, MD, SCT gpg public key: mailto:gpg...@asaguiar.net signature.asc Description: This is a digitally signed message part

Re: [Rd] example package for devel newcomers

2011-08-03 Thread Alexandre Aguiar
p developer that it currently is not a concern. Have also found that a recursion problem with libpcre (used by libphp) has been solved. In a phrase: problems I foresee are related to deployment of libphp and potential security breaches. Thanx and cheers. -- Alexandre -- Alexandre San

Re: [Rd] example package for devel newcomers

2011-08-02 Thread Alexandre Aguiar
guess many inventive uses may appear. For instance, Berkeley db, inifiles support, time/zone database, support to exif info in jpeg and tiff files, some 20 or 30 different hashes, ftp support, JSON, SOAP client and server (this can do amazing things) can all become available to R. Kindest reg

Re: [Rd] example package for devel newcomers

2011-08-01 Thread Alexandre Aguiar
TW, I copied Rdynpriv.h by hand to my include path to get access to 'struct _DllInfo' definition. The R install process did not copy this file. Am I doing something wrong here? Sorry for the lengthy message. Thanx for your help. -- Alexandre -- Alexandre Santo

[Rd] example package for devel newcomers

2011-08-01 Thread Alexandre Aguiar
Hi, I'd like to know whether there is a package (or more, of course) regarded as a good example that could be used also as an instructional tool for newcomers to R extensions development. Thanks. -- Alexandre -- Alexandre Santos Aguiar, MD, SCT signature.asc Description: This

Re: [Rd] Wait for user input with readline()

2010-12-08 Thread Alexandre
Thanks all, Even if I'm not an expert in programmation, I'll try to compile informations and try to sort my problem. Alexandre -- View this message in context: http://r.789695.n4.nabble.com/Wait-for-user-input-with-readline-tp3054517p3077878.html Sent from the R devel mailing list

Re: [Rd] Wait for user input with readline()

2010-12-07 Thread Alexandre
is the value of y? ")) What is the value of y? 9 Finally : > x [1] 5 > y [1] 9 I hope that my english is not to bad and that you've understand what I mean. Regards Alexandre -- View this message in context: http://r.789695.n4.nabble.com/Wait-for-user-input-with-readline-tp3

[Rd] Division by zero on window resized (PR#14019)

2009-10-21 Thread alexandre . maurel
Full_Name: Alexandre Maurel Version: 2.9.2 OS: winXP Submission from: (NULL) (83.113.31.36) I am running R.dll from Dolphin Smalltalk using Rf_initEmbeddedR(argc, argv); ... ... when I run the following : a = matrix(c(1,2,3,4),c(2,3,3,3)) heatmap(a) everything seems to work

[Rd] invalid comparison in numeric sequence (PR#13551)

2009-02-24 Thread alexandre . courtiol
Full_Name: alex Version: 2.8.1 OS: Ubuntu / MacOSX Submission from: (NULL) (162.38.183.51) > 0.6==0.6 [1] TRUE > seq(0,1,0.1)==0.4 [1] FALSE FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE > seq(0,1,0.1)==0.6 [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE > se