Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

780 results for “from:Luke Tierney”

R (external ?) reference
Luke Tierney · Feb 28, 2003 · r-help

On Fri, 28 Feb 2003, Laurent Gautier wrote: > Dear List, > > I found a documentation on the web that mentions things like 'R references' > (http://www.stat.uiowa.edu/~luke/R/simpleref.html). > > However, I could not find the R_MakeReference...

precedence (was 'historical NA question')
Luke Tierney · May 7, 2014 · r-devel

On Wed, 7 May 2014, Therneau, Terry M., Ph.D. wrote: > Hadley asked about the Blue book; my shelf still has the earlier brown book > Becker and Chambers, 1984, S: An interactive environment for data analysis > and graphics. > > The manual...

missing PROTECT() in src/main/arithmetic.c
Luke Tierney · Jul 13, 2013 · r-devel

Thanks -- fixed in 63290 (trunk) and 63291 (patched). luke On Fri, 12 Jul 2013, Herv? Pag?s wrote: > at lines 651 & 653 (integer_binary function): > > if (code == DIVOP || code == POWOP) > ans = allocVector(REALSXP, n); > else > ans = allocVector(INTSXP, n); > > There...

R-alpha: machine-independent .Rdata
Luke Tierney · May 8, 1997 · r-devel

If a move toward machine-independent representation seems reasonable, it may be worth looking at some of the binary data exchange formats used by nasa and others, CDF http://nssdc.gsfc.nasa.gov/cdf/cdf_home.html netCDF http://www...

R_ext/Altrep.h should be more C++-friendly
Luke Tierney · Oct 8, 2018 · r-devel

Thanks for the suggestion. Committed in R_devel. Best, luke On Mon, 8 Oct 2018, Michael Sannella wrote: > I am not able to #include "R_ext/Altrep.h" from a C++ file.? I think > it needs two changes: > > 1. add...

[External] Patch to replace "his" in Writing R Extensions
Luke Tierney · May 21, 2019 · r-devel

Thanks. Addressed in r76559 (trunk) and r76560 (R-3-6-branch). Best, luke On Tue, 21 May 2019, Ma?lle SALMON via R-devel wrote: > Dear R-devel team, > > Many thanks for the great resource that is "Writing R Extensions...

interaction of options(error=) and try()
Luke Tierney · Jan 7, 2003 · r-help

On Tue, 7 Jan 2003, Vadim Ogranovich wrote: > Dear R-Users, > > I am somewhat confused by the interplay between options(error=) and try(). I > set my error handler to an expression that dumps the frames and quits. Yet, > I thought...

Tracebacks & try
Luke Tierney · Sep 2, 2009 · r-devel

You can use a calling handler along with sys.calls, something like f <- function() g() g <- function() stop("A") tryCatch(withCallingHandlers(f(), error = function(e) { e$calls <- sys.calls() signalCondition(e) }), error = function(e) e) Best, luke On Wed, 2...

get ...
Luke Tierney · Jun 30, 2008 · r-devel

On Sat, 28 Jun 2008, Peter Dalgaard wrote: > Gabor Grothendieck wrote: >> Suppose we do this: >> >> >>> f <- function(...) environment() >>> e <- f(a = 1, b = 2) >>> ls(e, all = TRUE) >>> >> [1] "..." >> >>> e$... >>> >> <...> >> >>> class(e$...) >>> >> [1] "..." >> >> Is there any way of getting a...

query on proxy settings for R.
Luke Tierney · Nov 5, 2003 · r-help

On Wed, 5 Nov 2003, Dipti Kamdar wrote: > Hi, > I have R installed on SuSE. > I am trying to find out as to where is the proxy information > stored and how it is stored. > I was trying to run the...

Help needed: plotting with no device
Luke Tierney · Sep 29, 2003 · r-help

Look at ?Signal and see if that would help. You may need to rename the appropriate .RData beforehand to be safer. luke On Mon, 29 Sep 2003, Ross Boylan wrote: > On Mon, Sep 29, 2003 at 05:09:49PM -0400...

netcdf
Luke Tierney · Feb 3, 1998 · r-devel

Douglas Bates wrote: > > Has anyone experimented with the Network Common Data Format (netcdf) > described at > http://www.unidata.ucar.edu/packages/netcdf > for archiving data? > > Is this format widely used outside of atmospheric research? I think Sigbrt Klinke has added...

Parallel processes
Luke Tierney · May 22, 2007 · r-help

On Tue, 22 May 2007, hodgess wrote: > > Dear R People: > > I was wondering if there were any packages for parallel programming in R. > > According to the R-help, at one time there was a package called SNOW. It doesn't...

R-beta: scripting with R?
Luke Tierney · May 7, 1998 · r-devel

Peter Dalgaard BSA wrote: > > Another thing: if you want the windowed text interface (scrollbars!) > launched from console program, I suspect you get a dangling "DOS-box". > I've only seen link-time solutions to that one. > I think it may...

Question about CHARSXP and garbage collection
Luke Tierney · Feb 13, 2016 · r-devel

They are garbage collected so you do need to protect them in C code. Best, luke On Sat, 13 Feb 2016, Holger Hoefling wrote: > Hi, > > I had a technical question about CHARSXP and garbage collection and > couldn't find the...

Summary of mails concerning R help system
Luke Tierney · Jan 29, 1998 · r-devel

Peter Dalgaard BSA wrote: > > Friedrich Leisch <Friedrich.Leisch@ci.tuwien.ac.at> writes: > > > 4) Rdconv -t rtf to support the windoze help format ... I definetely > > don't have time or any motivation to do that, so if somebody wants to...

compiling R under hp-ux 10.20
Luke Tierney · Dec 4, 2002 · r-help

On Thu, 5 Dec 2002, [iso-2022-jp] $B>e86=(><(B wrote: > 2. Unable to load the library cluster: > > library(cluster) > Loading required package: mva > Error in dyn.load(x, as.logical(local), as.logical(now)) : > unable to load shared...

Capturing environment associated with a promise
Luke Tierney · Oct 8, 2012 · r-devel

Promises are an implementation detail -- we need to be able to change them, optimize them away, etc, so there is a limit on what we want to expose. Allowing a query of whether a binding is delayed or not should...

tkRplot under macos x
Luke Tierney · Feb 28, 2005 · r-help

It only works under X11; if that is what you want this posting should tell you what needs to be done: https://stat.ethz.ch/pipermail/r-sig-mac/2004-December/001465.html Best, luke On Mon, 28 Feb 2005...

R with multiple processors
Luke Tierney · Aug 31, 2010 · r-devel

We are working on extending the approach in pnmath to other functions. Hopefully this will make it int othe R distribution in some form within the next couple of releases. luke On Mon, 30 Aug 2010, Michel Boaventura wrote: > Hello...

Can't find what you're looking for? Try searching with Google .