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.

550 results for “from:Jens”

bringToTop() fails (PR#818)
Jens Oehlschlägel · Jan 19, 2001 · r-devel

> That works exactly as documented on my machine. It may depend which mode > you are in and how you interpret `window'. Try SDI mode. In MDI mode the > window is the whole frame, not the sub-window. I don't...

BUG in format()? (PR#383)
Jens Oehlschlägel-Akiyoshi · Dec 21, 1999 · r-devel

In RW0.651 and RW0.901, I discovered some unexpected behaviour when I used as.matrix.data.frame() > matrix('"', 2, 2) [,1] [,2] [1,] "\"" "\"" [2,] "\"" "\"" > unclass(as.data.frame(matrix('"', 2, 2))) $V1 [1] "\"" "\"" $V2 [1] "\"" "\"" attr(,"row.names") [1...

R logo as SVG ?
Jens Elkner · Mar 2, 2010 · r-devel

On Mon, Mar 01, 2010 at 10:16:16PM +0100, Peter Dalgaard wrote: > >Jens Elkner wrote: ... > >>BTW: screenshots I made from my desktop are available via > >>http://iws.cs.uni-magdeburg.de/~elkner/r/ ... > >Looks quite nice. I later realized...

possible BUG with as.data.frame() and/or [.data.frame
Jens Oehlschlägel-Akiyoshi · Mar 8, 2000 · r-devel

Here is a possible BUG with as.data.frame() and/or [.data.frame which broke Michael Lapsleys RODBC-Code. Can anyone confirm it is a bug or a 'feature' of the prototype? tablename <- "abc" a <- as.data.frame(cbind("abc...

Manual: writing R Extensions (PR#380)
Jens Oehlschlägel-Akiyoshi · Dec 20, 1999 · r-devel

-- Happy holidays! -- Dear R Development Core Team, I want to thank you *very much* for the new "Writing R Extensions" manual published with RW0.901 and hope this is the right place to report some possible typos. page 17, example...

identical calls are not equal !?
Jens Oehlschlägel · Jun 12, 2002 · r-help

Can please someone familiar with the R internals enlighten me on the following strange observation: # this is IDENTICAL as expected identical(substitute(substitute()), substitute(substitute())) # but NOT EQUAL !???? substitute(substitute()) == substitute(substitute()) # I originally found it on t2 <- function(e...

problem with nested loops
Jens Oldeland · Jul 30, 2008 · r-help

Dear all, I have a problem with constructing a nested loop. I have two matrices: pnr: 800 rows 14 columns where rows are 40x20 meaning that 40 rows belong to one of twenty objects in the matrix pnr mvp: 20...

Cleaning up in the bugs repository
Jens Oehlschlägel-Akiyoshi · Feb 28, 2000 · r-devel

Peter, you wrote > Jens O-A's: > "as.matrix.data.frame() modifies content of character columns" > > was moved to Documentation-fixed. The behaviour is Splus compatible, > so hardly fixable. this is shocking bad news, as it means, that we stay...

X-Priority: 3 (Normal)
Jens Oehlschlägel · Nov 8, 2002 · r-help

Reid, Thanks that you took up the challenge of this serious puzzle (the issue masked a bug in one of my functions under 1.5.1, which was unmasked when changing to 1.6.1, however the issue is still...

GIS re-mapping / polygon overlap
Jens Oehlschlägel · Oct 23, 2003 · r-help

In Germany the Unemployment Agency uses a sectioning of the german map that is different from the usual Administrative Boundaries. Some demographic data are available in Administrative Boundaries only, some in Unemployment Boundaries only. I would like to generate estimates...

help me
Jens Nieschulze · Oct 16, 2001 · r-help

On Tue, 16 Oct 2001, d.tarfanelli at libero.it wrote: > Hy, > I have dowloaded the R-version for Windows. > I would want to plot different pictures on the same device, but I am not > able to do it (i...

nlme question
Jens_Praestgaard@hgsi.com · Mar 23, 2004 · r-help

I have a need to call and pass arguments to nlme() from within another function. I use R version 1.8. I have found an apparent way to make this work, but I would appreciate some comments on whether this...

How to overload the assignment operator?
Jens Oehlschlägel · Nov 13, 2007 · r-devel

Thanks Simon, > You cannot use S3 here, because you want to dispatch on the *second* > argument. "<-" <- function(x, value)UseMethod("<-", value) DOES dispatch on the second argument (see the dispatchsecond example below) > Why don't you take the external pointer...

How to overload the assignment operator?
Jens Oehlschlägel · Nov 13, 2007 · r-devel

Thank you Brian, > setReplaceMethod() is just syntactic sugar for setting an S4 method on a > replacement function (read the function definition to see so). You can > set S3 replacement methods, and the S4 mechanism just piggy-backs on that. So...

How to overload the assignment operator?
Jens Oehlschlägel · Nov 13, 2007 · r-devel

Thanks Simon, > You cannot use S3 here, because you want to dispatch on the *second* > argument. "<-" <- function(x, value)UseMethod("<-", value) DOES dispatch on the second argument (see the dispatchsecond example below) > Why don't you take the external pointer...

inconsistencies between formatC(), format() and format.char()
Jens Oehlschlägel-Akiyoshi · Jan 12, 2000 · r-devel

Dear R-Developers, Just a note: there are some inconsistencies between formatC(), format() and format.char() and cross calling between these functions. On the one hand > cat(format('{"}'), "\n") {\"} > cat(format.char('{"}'), "\n") {\"} is by default format.char(, flag="-") and...

[R-pkg-devel] Future location of Rtools?
Jens Oehlschlägel · Oct 25, 2017 · r-package-devel

Good morning, Duncan has announced that he steps back from the maintenance of Rtools. Where will I find the new Rtools toolchain that complements Microsofts R-version? Kind regards Jens > Gesendet: Donnerstag, 28. September 2017 um 12:27 Uhr > Von...

Save workspace with ff objects
Jens Oehlschlägel · Nov 27, 2009 · r-help

> My script generates a mixture of normal and ff objects. > Very often I would like to save the workspace for > each parameter setting, so that I can get back to it later on. > Is there an easy way to do...

R_LIBS_USER bugs
Jens Elkner · Feb 19, 2010 · r-devel

On Wed, Feb 17, 2010 at 07:49:20AM -0800, Seth Falcon wrote: Hi, > > On 2/16/10 10:31 AM, Jens Elkner wrote: > > Having currently a big problem with R 2.10.1 vanilla (Solaris): > > > > As soon as the...

how to print the full name of the factors in summary?
Jen-Chien Chang · Nov 2, 2009 · r-help

Hi, I am wondering if there is a simple way to fix the problem I am having. For unknown reason, I could not get the full name of the factors to be printed in the summary. I have tried to...

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