similar to: R_Visible???

Displaying 20 results from an estimated 2000 matches similar to: "R_Visible???"

2008 Apr 24
2
r won't start: "r: symbol lookup error: r: undefined symbol: R_Visible" (PR#11265)
Full_Name: Jakob Stoeger Version: 2.7.0 OS: ubuntu 7.10 Submission from: (NULL) (137.248.74.38) Hi! I hope, it is justified to write this email... I'm relatively new to linux, and haven't worked with r, yet, so please pardon any things I do not know... I tried installing r on my computer, and didn't manage to get the program running. After having installed littler, typing r into
2024 Oct 24
1
Could .Primitive("[") stop forcing R_Visible = TRUE?
Hello, The "[" primitive operator currently has the 'eval' flag set to 0 in src/main/names.c. This means that the result of subsetting, whether R-native or implemented by a method, will never be invisible(). This is a very reasonable default: if the user goes as far as to subset a value, they probably want to see the result. Unfortunately, there also exists at least one
2024 Oct 24
1
Could .Primitive("[") stop forcing R_Visible = TRUE?
Thanks for the detailed analysis and proposition Ivan. The patch you are proposing to base R is https://github.com/Rdatatable/data.table/issues/6566#issuecomment-2428912338 right? On Thu, Oct 24, 2024 at 8:48?AM Ivan Krylov via R-devel <r-devel at r-project.org> wrote: > > Hello, > > The "[" primitive operator currently has the 'eval' flag set to 0 in >
2016 Sep 02
4
withAutoprint({ .... }) ?
On R-help, with subject '[R] source() does not include added code' >>>>> Joshua Ulrich <josh.m.ulrich at gmail.com> >>>>> on Wed, 31 Aug 2016 10:35:01 -0500 writes: > I have quantstrat installed and it works fine for me. If you're > asking why the output of t(tradeStats('macross')) isn't being printed, >
2016 Sep 02
1
withAutoprint({ .... }) ?
On 02.09.2016 14:38, Duncan Murdoch wrote: > On 02/09/2016 7:56 AM, Martin Maechler wrote: >> On R-help, with subject >> '[R] source() does not include added code' >> >>>>>>> Joshua Ulrich <josh.m.ulrich at gmail.com> >>>>>>> on Wed, 31 Aug 2016 10:35:01 -0500 writes: >> >> > I have quantstrat
2009 Nov 26
2
little "r" cannot find packages
Dear All I want to use R, Rscript und r alternately under one common configuration. The problem is that \"r\" can't find the package \"Rmpi\" and other packages whereas \"R\" has no problem to find. $ R --vanilla < mpiHelloWorld.r #!/usr/bin/env r library(Rmpi) # calls MPI_Init rk <- mpi.comm.rank(0) sz <- mpi.comm.size(0) name <-
2008 Mar 17
1
how to get access to C++ Objects
In the "Writing R Extensions" manual appears this example, to get access to C++ function using the R commands: R> dyn.load(paste("X", .Platform$dynlib.ext, sep = "")) constructor Y R> .C("X_main") constructor X destructor X list() That gives me access to the function "X_main", but how to get access to methods and properties
2016 Sep 24
2
withAutoprint({ .... }) ?
>>>>> William Dunlap <wdunlap at tibco.com> >>>>> on Fri, 2 Sep 2016 08:33:47 -0700 writes: > Re withAutoprint(), Splus's source() function could take a expression > (literal or not) in place of a file name or text so it could support > withAutoprint-like functionality in its GUI. E.g., >> source(auto.print=TRUE,
2016 Sep 25
3
withAutoprint({ .... }) ?
>>>>> Henrik Bengtsson <henrik.bengtsson at gmail.com> >>>>> on Sat, 24 Sep 2016 11:31:49 -0700 writes: > Martin, did you post your code for withAutoprint() anywhere? > Building withAutoprint() on top of source() definitely makes sense, > unless, as Bill says, source() itself could provide the same feature. I was really mainly asking
2006 Sep 30
1
Strange behaviour of the [[ operator (PR#9263)
On 9/29/2006 9:06 PM, Herve Pages wrote: > Hi, > > This looks like a bug: > > > a <- list(b=5) > > a[['b']] > [1] 5 > > a[[t<-'b']] > > Nothing gets printed! > > I need to use parenthesis to see the expected result: > > > a[[(t<-'b')]] > [1] 5 Yes, I agree it looks like a bug,
2008 Apr 25
0
r won't start: "r: symbol lookup error: r: undefined symbol: (PR#11274)
On 24 April 2008 at 20:20, jakobstoeger at gmx.de wrote: | Full_Name: Jakob Stoeger | Version: 2.7.0 | OS: ubuntu 7.10 | Submission from: (NULL) (137.248.74.38) | | | Hi! | | I hope, it is justified to write this email... | I'm relatively new to linux, and haven't worked with r, yet, so please pardon | any things I do not know... | | I tried installing r on my computer, and didn't
2024 Oct 25
1
Could .Primitive("[") stop forcing R_Visible = TRUE?
On Thu, 24 Oct 2024 13:23:56 -0400 Toby Hocking <tdhock5 at gmail.com> wrote: > The patch you are proposing to base R is > https://github.com/Rdatatable/data.table/issues/6566#issuecomment-2428912338 > right? Yes, it's this one, thank you for providing the link. Surprisingly, a very cursory check of 100 packages most downloaded from cloud.r-project.org in the last month
2024 Oct 25
1
Could .Primitive("[") stop forcing R_Visible = TRUE?
My message below sounds a little aggressive, I apologize in advance for that. But I can't think of better wording. This is a small change, which will have a small benefit, mainly for the data.table authors, who really brought it on themselves by choosing to (ab)use R extraction syntax to have side effects. Surely you or they should be the ones to run the test across all of CRAN? Duncan
2024 Oct 25
1
Could .Primitive("[") stop forcing R_Visible = TRUE?
? Fri, 25 Oct 2024 08:39:39 -0400 Duncan Murdoch <murdoch.duncan at gmail.com> ?????: > Surely you or they should be the ones to run the test across all of > CRAN? That's fair. The question is, is there a fundamental reason I overlooked to deny such a change? Except for positioning and whitespace, the line has been in names.c since SVN revision 2. The one regression test touched
2024 Oct 25
1
[External] Re: Could .Primitive("[") stop forcing R_Visible = TRUE?
On Fri, 25 Oct 2024, Ivan Krylov via R-devel wrote: > ? Fri, 25 Oct 2024 08:39:39 -0400 > Duncan Murdoch <murdoch.duncan at gmail.com> ?????: > >> Surely you or they should be the ones to run the test across all of >> CRAN? > > That's fair. The question is, is there a fundamental reason I > overlooked to deny such a change? Except for positioning and >
2007 Jan 18
0
Emulating a REPL in frontends
A common need in R frontends is to provide some sort of read, (parse), evaluate, print loop. However, there are also a number of points where frontends may want to differ from the standard REPL as available e.g. in R_ReplDLLdo1(). First some thoughts on what is needed, and what is already there, or missing. If you want to skip over this, a short summary is provided in the second half, below
2001 Sep 12
0
AES update..
I've done a decent size update of the OpenSSH portable from the upstream tree. There is an AES upgrade that needs to take place, but I need people to test and tell me what endedness changes need to be applied (if any). Attached is the patch. It is geared towards the latter snapshots..Unsure how it will patch (if at all) against 2.9pX series. Thanks. - Ben "This is dark day in
2016 Sep 02
0
withAutoprint({ .... }) ?
On 02/09/2016 7:56 AM, Martin Maechler wrote: > On R-help, with subject > '[R] source() does not include added code' > >>>>>> Joshua Ulrich <josh.m.ulrich at gmail.com> >>>>>> on Wed, 31 Aug 2016 10:35:01 -0500 writes: > > > I have quantstrat installed and it works fine for me. If you're > > asking why
2017 Sep 30
3
Please be careful with R 3.4.2 upgrades via CRAN, launchpad, ...
Am Freitag, 29. September 2017, 16:20:37 CEST schrieb Dirk Eddelbuettel: > On 29 September 2017 at 14:50, Michael Rutter wrote: > | Corrected packages are now on the RRutter PPA ( > | https://launchpad.net/~marutter/+archive/ubuntu/rrutter) and soon on CRAN > | mirrors. > | > | If you have any issues or questions, please let me know. > > Nice work--thanks so much for the
2006 Sep 26
4
New project: littler for GNU R
What ? ====== littler - Provides hash-bang (#!) capability for R (www.r-project.org) Why ? ===== GNU R, a language and environment for statistical computing and graphics, provides a wonderful system for 'programming with data' as well as interactive exploratory analysis, often involving graphs. Sometimes, however, simple scripts are desired. While GNU R can be used