Displaying 20 results from an estimated 826 matches for "tierney".
2019 Nov 01
4
[External] R C api for 'inherits' S3 and S4 objects
Thank you Luke.
That is why I don't use Rf_inherits but INHERITS which does not
allocate, provided in the email body.
I cannot do similarly for S4 classes, thus asking for some API for that.
On Fri, Nov 1, 2019 at 5:56 PM Tierney, Luke <luke-tierney at uiowa.edu> wrote:
>
> On Fri, 1 Nov 2019, Jan Gorecki wrote:
>
> > Dear R developers,
> >
> > Motivated by discussion about checking inheritance of S3 and S4
> > objects (in head matrix/array topic) I would light to shed some light
>...
2019 Sep 15
2
[External] REprintf could be caught by tryCatch(message)
Thank you Luke for prompt reply.
Is it possible then to request a new function to R C API "message"
that would equivalent to R "message" function? Similarly as we now
have C "warning" and C "error" functions.
Best,
Jan
On Sun, Sep 15, 2019 at 5:25 PM Tierney, Luke <luke-tierney at uiowa.edu> wrote:
>
> On Sun, 15 Sep 2019, Jan Gorecki wrote:
>
> > Dear R-devel community,
> >
> > There appears to be an inconsistency in R C API about the exceptions
> > that can be raised from C code.
> > Mapping of R C funs to...
2019 Sep 08
1
[External] Missing function Rf_findFun3
I am not using the C API from a package but with an embedded R.
Why have it declared in the include/ if it cannot be accessed then?
Best,
Laurent
On Sun, Sep 8, 2019, 8:27 AM Tierney, Luke <luke-tierney at uiowa.edu> wrote:
> On Sat, 7 Sep 2019, Laurent Gautier wrote:
>
> > Hi,
> >
> >
> > The function `Rf_findFun3` is declared in
> > `$(R CMD CONFIG HOME)/lib/R/include/Rinternals.h`
> > but appears to be missing from R's sha...
2019 Nov 24
3
switch to reference counting in R-devel
...or SET_NAMED
functions even though this has been discouraged for some time.
For now these will not produce errors but also not do anything useful.
They will probably be removed before R 4.0.0 is released, so you
should look at why you are using them and adjust accordingly.
Best,
luke
--
Luke Tierney
Ralph E. Wareham Professor of Mathematical Sciences
University of Iowa Phone: 319-335-3386
Department of Statistics and Fax: 319-335-3017
Actuarial Science
241 Schaeffer Hall email: luke-tierney at uiowa.edu
Iowa City, IA 5224...
2019 Oct 07
4
[External] Re: should base R have a piping operator ?
> On 7 Oct 2019, at 17:04, Tierney, Luke <luke-tierney at uiowa.edu> wrote:
>
> Think about what happens if an
> argument in a pipe stage contains a pipe. (Not completely
> unreasonable, e.g. for a left_join).
It should work exactly as it does in a local environment.
```
`%foo%` <- function(x, y) {
env <...
2005 Apr 18
2
when can we expect Prof Tierney's compiled R?
I am excited to learn that Prof. Tierney is bringing to us compiled R.
I would like to learn when it will be available. This information will
be useful in scheduling some of my projects. Thanks.
Jason
Jason Liao, http://www.geocities.com/jg_liao
Dept. of Biostatistics, http://www2.umdnj.edu/bmtrxweb
University of Medicine and Dentistry...
2020 Oct 29
2
[External] Something is wrong with the unserialize function
...andle_namespace_error, NULL);
class = LookupClass(csym, psym);
+ UNPROTECT(1);
}
return class;
}
seems to remove the warning; I'm guessing that the other SEXP already exist so don't need protecting?
Martin Morgan
?On 10/29/20, 12:47 PM, "R-devel on behalf of luke-tierney at uiowa.edu" <r-devel-bounces at r-project.org on behalf of luke-tierney at uiowa.edu> wrote:
Thanks for the report. Will look into it when I get a chance unless
someone else gets there first.
A simpler reprex:
## create and serialize a memmory-mapped file object...
2019 Dec 03
1
switch to reference counting in R-devel
This is very exciting news. Luke, thank you for all your work on this
- I know it's been a long journey.
All the best,
Henrik
On Tue, Dec 3, 2019 at 8:04 AM Tierney, Luke <luke-tierney at uiowa.edu> wrote:
>
> R-devel has been switched to use reference counting by default with
> r77508. Building with -DSWITCH_TO_NAMED goes back to the NAMED
> mechanism.
>
> Best,
>
> luke
>
> On Sun, 24 Nov 2019, luke-tierney at uiowa.edu wr...
2017 Feb 23
4
Introduction / Edit group access for HowTos/SELinux
Hi,
Wiki username is: GaryTierney
I'd like to add some additional content to the HowTos/SELinux wiki page.
More specifically: additional tips on troubleshooting SELinux problems
using setools-console and audit utils, using Role-Based Access Control
instead of the default unconfined user configuration, and some pointers
on...
2020 Nov 17
1
[External] exists, get and get0 accept silently inputs of length > 1
...;- get(j))) ...
>
> (and often interactively, rather than in a package)
>
> Am I to understand that get(j) will now be equivalent to `j`
> even if j
> is a string referring putatively to another object?
>
> On Sat, 14 Nov 2020 at 01:34, <luke-tierney at uiowa.edu> wrote:
> >
> > Worth looking into. It would probably cause some check
> failures, so
> > would probably be a good idea to run a check across
> BIOC/CRAN.? At the
> > same time it would be worth allowing name objects...
2005 Apr 22
1
RE: [R] when can we expect Prof Tierney's compiled R?
...n iA) i-1)
[1] 0.79 0.00 0.79 0.00 0.00
> n = 1e6; iA = seq(2,n); x = double(n); system.time(for (i in iA) i)
[1] 0.24 0.01 0.24 0.00 0.00
Thanks,
Vadim
> -----Original Message-----
> From: r-help-bounces@stat.math.ethz.ch
> [mailto:r-help-bounces@stat.math.ethz.ch] On Behalf Of Luke Tierney
> Sent: Friday, April 22, 2005 7:33 AM
> To: Peter Dalgaard
> Cc: Jason Liao; r-help@stat.math.ethz.ch
> Subject: Re: [R] when can we expect Prof Tierney's compiled R?
>
> On Wed, 20 Apr 2005, Peter Dalgaard wrote:
>
> > Luke Tierney <luke@stat.uiowa.edu> writ...
2005 Apr 27
1
RE: [R] when can we expect Prof Tierney's compiled R?
...ystems where the new state is computed as a
transformation of the previous state. In my example, the f1(), the state
was a scalar and the transformation was the identity.
In any case the timing of the byte-compilation is remarkable!
Thanks,
Vadim
> -----Original Message-----
> From: Luke Tierney [mailto:luke@stat.uiowa.edu]
> Sent: Tuesday, April 26, 2005 5:50 PM
> To: Vadim Ogranovich
> Cc: Peter Dalgaard; Jason Liao; r-devel@stat.math.ethz.ch
> Subject: RE: [R] when can we expect Prof Tierney's compiled R?
>
> For what it's worth (probably not much as these si...
2018 Jul 26
2
Possible bug: R --slave --interactive stdin echo on Linux when stdin is a fifo
...ons(error = function() invokeRestart("abort"))
There may be better ways.
Best,
luke
>
> Gabor
>
>> Barry
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>
--
Luke Tierney
Ralph E. Wareham Professor of Mathematical Sciences
University of Iowa Phone: 319-335-3386
Department of Statistics and Fax: 319-335-3017
Actuarial Science
241 Schaeffer Hall email: luke-tierney at uiowa.edu
Iowa City, IA 5224...
2020 Nov 17
2
[External] exists, get and get0 accept silently inputs of length > 1
...d get() in constructions like
for (j in ls()) if (is.numeric(x <- get(j))) ...
(and often interactively, rather than in a package)
Am I to understand that get(j) will now be equivalent to `j` even if j
is a string referring putatively to another object?
On Sat, 14 Nov 2020 at 01:34, <luke-tierney at uiowa.edu> wrote:
>
> Worth looking into. It would probably cause some check failures, so
> would probably be a good idea to run a check across BIOC/CRAN. At the
> same time it would be worth allowing name objects (type "symbol") so
> thee don't have to be conver...
2020 Jun 07
4
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
...header files uses our calloc/free. Either would be less
brittle that the current status.
Best,
luke
On Sun, 7 Jun 2020, peter dalgaard wrote:
>
>
>> On 7 Jun 2020, at 18:59 , Jeroen Ooms <jeroenooms at gmail.com> wrote:
>>
>> On Sun, Jun 7, 2020 at 5:53 PM <luke-tierney at uiowa.edu> wrote:
>>>
>>> On Sun, 7 Jun 2020, peter dalgaard wrote:
>>>
>>>> So this wasn't tested for a month?
>>>>
>>>> Anyways, Free() is just free() with a check that we're not freeing a null pointer, followed by setti...
2020 Apr 22
1
[External] parse data wrong for R 4.0. raw strings
...t of the tag after all.
Also, if we don't keep the whole expression, then it is not a valid
string literal any more, because it does not have quoting.
I can try to look into a patch. This is for 4.1 I believe, so in some
sense it is not urgent?
Gabor
On Wed, Apr 22, 2020 at 3:31 PM <luke-tierney at uiowa.edu> wrote:
>
> Looks like a bug. Will have a look when I get a chance.
>
> Simpler version:
>
> getParseData(parse(text = 'r"-|hello|-"'))
>
>
> > getParseData(parse(text = 'r"(hello)"'))
> line1 col1 line2 col2 id...
2016 Aug 02
1
[R] Fwd: Help: malloc/free deadlock in unsafe signal handler 'Rf_onsigusr1'
...ays before forwarding it to R-help, but no
> one reply.
>
> Is there any workaround? When were?SIGUSR1 and SIGUSR2?sent in R? Or maybe
> we should move all operations not too emergency out of signal handler?
>
> Thanks.
>
>
> On Tue, Aug 2, 2016 at 4:02 AM, <luke-tierney at uiowa.edu> wrote:
> The handlers for SIGUSR1 and SIGUSR2 are really intended as an
> emergency break, not for ordinary programming. These could be
> rewritten to be safer but that would make them less immediate.
>
> Followups would be more appropriate on...
2012 Nov 02
2
Merge data frame with mispelling characters
...ot;Terney", "Ripley", "McNeil")),
nationality = c("US", "Australia", "US", "UK", "Australia"),
deceased = c("yes", rep("no", 4)))
"Venables" is without the final 's', and "Tierney, without "i".
# Data for books:
books <- data.frame(
surname = I(c("Tukey", "Venables", "Tierney",
"Ripley", "Rippley", "McNeil", "R Core")),
title = c("Exploratory Data Analysis",...
2015 Jan 22
5
:: and ::: as .Primitives?
On Thu, Jan 22, 2015 at 11:44 AM, <luke-tierney at uiowa.edu> wrote:
>
> For default methods there ought to be a way to create those so the
> default method is computed at creation or load time and stored in an
> environment.
We had considered that, but we thought the definition of the function
would be easier to interpret if it...
2018 Mar 27
2
Objects not gc'ed due to caching (?) in R's S3 dispatch mechanism
I have committed a change to R-devel that addresses this. To be on the
safe side I need to run some more extensive tests before deciding if
this can be ported to the release branch for R 3.5.0. Should know in a
day or two.
Best,
luke
On Tue, 27 Mar 2018, luke-tierney at uiowa.edu wrote:
> This has nothing to do with printing or dispatch per se. It is the
> result of an internal register (R_ReturnedValue) being protected. It
> gets rewritten whenever there is a jump, e.g. by an explicit return
> call. So a simplified example is
>
> new_foo <...