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.

2,291 results for “from:Henrik Bengtsson”

[R-pkg-devel] Format/parser for NEWS (not NEWS.Rd)?
Henrik Bengtsson · Oct 7, 2015 · r-package-devel

Hi, I'm looking for a parser of the plain text NEWS format (not the NEWS.Rd format) - ideally the same on that is used by R itself. Does anyone know which that one is / of such at tool? Thanks...

Rprof(..., memory.profiling=TRUE) to profile C memory allocation?
Henrik Bengtsson · Nov 22, 2014 · r-devel

Could someone please confirm/refute that Rprof(..., memory.profiling=TRUE) can also be used to profile memory allocation done in a C function (src/*.c) that uses, e.g. allocVector(INTSXP, n) but also allocations such as R_alloc(n...

Adding text comments to graphics device output files?
Henrik Bengtsson · Jul 30, 2013 · r-devel

Hi, several image file format supports textual/meta data comments in one way or the other. For me an obvious usage would be to add sessionInfo() information to PNG and PDF image files, ideally from within R although external tools...

[Bioc-devel] Documentation on how to update a BioC experimental package?
Henrik Bengtsson · Oct 23, 2014 · bioc-devel

It's been a while since I worked with experimental packages. Where can I find documentation on how to (Subversion) update our AffymetrixDataTestFiles package with additional data files? All I know is that the SVN repository only contains a stub...

How to build R without support for translations?
Henrik Bengtsson · Feb 21, 2017 · r-devel

In Section 'Localization of messages' of R Installation and Administration (R 3.3.2), it says: "R can be built without support for translations, but it is enabled by default." How can this be done? Is this an option to...

"Human-style" sort() of alphanum strings?
Henrik Bengtsson · Jan 5, 2010 · r-devel

I know it is fairly easy to implement (though not always well defined), but is there an existing sort function out there that takes alphanum strings and sort them in a "human" fashion? For example, instead of: z1.doc z10...

Code tools for identifying which package A functions package B use?
Henrik Bengtsson · Nov 14, 2014 · r-devel

Hi, I'd like to list all package PkgA functions that another package PkgB use via Depends or Imports (ignoring Suggests for simplicity). As long as PkgB uses importFrom("PkgA", ...) it's just a matter of parsing the NAMESPACE file...

[Bioc-devel] Bioc package pages: List also BugReports for a package?
Henrik Bengtsson · Apr 26, 2015 · bioc-devel

For affxparser, we've got the following in DESCRIPTION: URL: https://github.com/HenrikBengtsson/affxparser BugReports: https://github.com/HenrikBengtsson/affxparser/issues But t's only the URL field that is listed on the package page(s): http://www.bioconductor...

Is it possible to retrieve the last error? (not error *message*)
Henrik Bengtsson · May 4, 2016 · r-devel

Hi, at the R prompt, is it possible to retrieve the last error (as in condition object of class "error")? I'm not asking for geterrmessage(), which only returns the error message (as a character string). I'm basically looking...

savehistory: Suggestions to a \seealso{} (PR#1104)
Henrik Bengtsson · Sep 28, 2001 · r-devel

Full_Name: Henrik Bengtsson Version: 1.3.1 OS: WinMe Submission from: (NULL) (130.235.2.229) I suggest the following \seealso to be added for savehistory: \seealso{ To execute \code{savehistory} automatically when \R quits see \link{.Last} and...

Suggestion: Add links to NEWS and CHANGES on help.start() page
Henrik Bengtsson · Nov 13, 2009 · r-devel

Hi, right now it is actually a bit tricky to locate and view the NEWS and the CHANGES files, especially if you are a beginning and don't even know that you are supposed to look for them. I'd...

MS Windows: R does not escape quotes in CLI options the same way as Rterm and Rscript
Henrik Bengtsson · Dec 15, 2021 · r-devel

On MS Windows 10, the following works: > Rscript --vanilla -e "\"abc\"" [1] "abc" and also: > Rterm --vanilla --no-echo -e "\"abc.txt\"" [1] "abc.txt" whereas attempting the same with 'R' fails; > R --vanilla --no-echo -e "\"abc.txt\"" Error...

[Bioc-devel] What are the R CMD check settings (env vars) that Bioc uses?
Henrik Bengtsson · Dec 3, 2019 · bioc-devel

I'm interested in finding out what customization Bioconductor servers do to R CMD check, e.g. _R_CHECK_***_ settings. I think someone pointed me to some location in the past, but I cannot locate it. I think a natural...

Space required by object?
Henrik Bengtsson · Sep 27, 2006 · r-help

See ll() in the R.oo package. /Henrik On 9/27/06, Ben Fairbank <BEN at ssanet.com> wrote: > Does R provide a function analogous to LS() or str() that reports the > storage space, on disk or in memory, required...

OT: Reason/history behind ## notation for comments?
Henrik Bengtsson · Sep 21, 2010 · r-devel

Off topic, but since I've observe both styles, does anyone know the history behind/reason for using ## instead of a single # to start comments in R. I know some editors do this by default. Is it because in C...

Suggestion: Clarification in Rd for utils::getAnywhere()
Henrik Bengtsson · Nov 20, 2009 · r-devel

In order to clarify that getAnywhere(str) where str is a character string object, will look for object with name "str" and not the value of 'str', I suggest the following Rd updated for utils::getAnywhere(): Update the argument list...

chm.help in windows
Henrik Bengtsson · Jan 23, 2006 · r-help

Same in R v2.2.1 patched (2006-01-01 r36947) and Rv2.3.0 (2006-01-01 r36947). /Henrik Thomas Steiner wrote: > options(chmhelp=TRUE) > help(package=fCalendar) > > does not open teh windows help browser, but > > help(CalendarData, package...

solve.default(): solve.qr() or qr.solve() in warning
Henrik Bengtsson · Apr 7, 2018 · r-devel

If base::solve.default() is called with a 'qr' object, the following will take place: if(inherits(a, "qr")) { warning("solve.default called with a \"qr\" object: use 'qr.solve'") return(solve.qr(a, b, tol)) } Note how the warning...

WISH: Sys.setlocale() to return value invisibly
Henrik Bengtsson · Mar 20, 2018 · r-devel

Contrary to, say, Sys.setenv(), Sys.setlocale() returns it's value visibly. This means that if you for instance add: Sys.setlocale("LC_COLLATE", "C") to your .Rprofile file, it will print: [1] "C" at startup. The workaround is to...

[Bioc-devel] Bioconductor website suggestion
Henrik Bengtsson · May 11, 2006 · bioc-devel

Hi, if the web server supports it, may I suggest to create a "virtual" (Unix-like) link so that, say, http://www.bioconductor.org/download/bioc-release/ always points to the latest stable release, e.g. http://www.bioconductor.org...

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