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.

180 results for “from:Mark Bravington”

sys.on.exit not working (PR#7665)
Mark Bravington · Feb 6, 2005 · r-devel

Full_Name: Mark Bravington Version: 2.0.1 OS: Windows XP Submission from: (NULL) (140.79.22.104) 'sys.on.exit()' doesn't seem to be working, since R1.7.1 at least: soe.test <- function() { on.exit( cat( 'In...

getAnywhere and functions starting with "." (PR#7684)
Mark Bravington · Feb 11, 2005 · r-devel

Full_Name: Mark Bravington Version: 2.0.1 OS: Windows XP Submission from: (NULL) (140.79.22.104) 'getAnywhere' crashes when its argument starts with a period: > getAnywhere( '.onLoad') Error in exists(x, envir, mode, inherits) : invalid first argument One...

debug 1.2.2 on CRAN
Mark Bravington · Apr 13, 2010 · r-packages

Version 1.2.2 of 'debug' is now on CRAN. The debugging facilities offered include code display, graceful error recovery, line-numbered conditional breakpoints, access to exit code, flow control, and full keyboard input. The new version supports debugging of...

how to stop without error message?
Mark Bravington · Nov 10, 2008 · r-help

Dear list Can anyone suggest a simple way to abort execution like stop(...) does, but without issuing an "Error: ..." message? I don't want to set 'options( show.error.messages=TRUE)' because I want normal behaviour to resume after this...

debug 1.2.2 on CRAN
Mark Bravington · Apr 13, 2010 · r-help

Version 1.2.2 of 'debug' is now on CRAN. The debugging facilities offered include code display, graceful error recovery, line-numbered conditional breakpoints, access to exit code, flow control, and full keyboard input. The new version supports debugging of...

broken link to new features in R-devel: no NEWS file
Mark Bravington · Jul 20, 2010 · r-devel

Hi The link from CRAN to "new features in R-devel" hasn't been working for a few days. Specifically, there is no NEWS file in https://svn.r-project.org/R/trunk/, though there is an ONEWS. The link...

How to understand packages, namespaces, environments
Mark Bravington · May 8, 2005 · r-devel

[Alexander Stoddard] > Subject: Re: [Rd] How to understand packages, namespaces, environments > > > > > Does saying the following load package 'foo' into its own > environment ? > > > library(foo) > [Duncan Murdoch] > This loads some of the (name, object) pairs from the package into two > environments...

eapply weirdness/bug
Mark Bravington · Feb 17, 2005 · r-devel

The following looks like an 'eapply' bug to me: t/subtest> e <- new.env() t/subtest> e$tempo <- quote( 1+'hi') t/subtest> lapply( ls( e), function( x) length( get( x,e))) [[1]] [1] 3 # seems reasonable-- e$tempo is...

Samples of external code with various compilers?
Mark Bravington · Dec 5, 2002 · r-devel

PS correction to previous my email, where I wrote the 2nd part before the 1st part: Places to mention "readme.packages": #(3) And presumably in "Writing R Extensions" itself, if #"readme.packages" is #likely to be a semi-permanent feature...

how to stop without error message?
Mark Bravington · Nov 10, 2008 · r-help

> > Dear list > > > > Can anyone suggest a simple way to abort execution like stop(...) does, but without issuing an "Error: ..." message? > > > > I don't want to set 'options( show.error.messages=TRUE)' because I want normal behaviour to resume after this...

regexp with [:upper:] (PR#11032)
Mark Bravington · Mar 24, 2008 · r-devel

Full_Name: Mark Bravington Version: 2.6.2 patched OS: Windows XP Pro Submission from: (NULL) (140.79.22.104) > grep( '[:upper:]', letters, val=T) # shurely shouldn't match anything ?? [1] "e" "p" "r" "u" The converse ( '[:lower:]' and LETTERS...

delay() has been deprecated for 2.1.0
Mark Bravington · Mar 14, 2005 · r-devel

[MVB] [snip] > > > >> makeActiveBinding( 'myAB', function( x) if( missing( x)) get( > >> 'myABguts', env=.GlobalEnv) else assign( 'myABguts', x, > .GlobalEnv), > >> exists( 'myAB') > > > > which appeared to return absolutely nothing-- not even a > missing or a null. The problem, of course, is that 'myABguts...

bug in help: R-devel pre 3.0
Mark Bravington · Jan 28, 2013 · r-devel

G'day There's a bug in R-devel help() when something is documented in multiple places. Eg > library( gmp) > ?apply The browser window then contains: Error in length(packages):"Help on topic '%s' was found in the following package...

sealed namespaces and lockEnvironment
Mark Bravington · Jan 1, 2006 · r-devel

Dear R-devel I'm experimenting with easy-to-use ways for a package maintainer to modify a"live" package-- i.e. while it's loaded & in use. One difficulty is that packages with namespaces are usually sealed with 'lockEnvironment...

Directory-like data organisation w/ environments?
Mark Bravington · Feb 3, 2004 · r-help

> -----Original Message----- > > Dear r-users! > > I wonder if there is a way of designing a directory like > structure for holding my data using environments? > > It would be nice if I could implement a kind of 'cd' command > to change to...

makeActiveBinding warning
Mark Bravington · Apr 5, 2005 · r-devel

A while ago Luke Tierney remarked that the warning associated with 'makeActiveBinding'-- "saved workspaces with active bindings may not work properly when loaded into older versions of R"-- should probably be removed in R-devel. It's still cropping up...

new version of package:debug
Mark Bravington · May 12, 2005 · r-packages

There is a new version of the 'debug' package (v1.1.0) available on CRAN. For existing users, the main changes are (i) some bug fixes, and (ii) it is now NAMESPACEd, so you can avoid naming conflicts with other...

mvbutils and debug: new versions
Mark Bravington · Nov 15, 2009 · r-packages

New versions of the 'mvbutils' and 'debug' packages are now available on CRAN. These should work with R 2.10 as well as R 2.9. 'mvbutils' offers tools for organization of workspaces, function/documentation editing with backups, package construction...

suggestion for update.default
Mark Bravington · Feb 19, 2004 · r-devel

'update.default( x, ...)' checks for a component of 'x' named 'call' and gives up if there isn't one. Before giving up, how about checking for an attribute named 'call'? I.E. something like this: # Existing code: call <- object$call...

how to debug (mtrace) a function defined inside a function?
Mark Bravington · Dec 4, 2010 · r-help

Hi Andre Just saw your email; I'm the author of the 'debug' package but I don't subscribe to R-help, so it's best to email me directly with questions about 'debug' or 'mvbutils'. The quick answer is...

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