Re: [Rd] matplot.Date & matplot.POSIXct

2020-01-28 Thread Edzer Pebesma
trary to the way it's currently designed to work. > > But... > > After reading your examples and re-reading the documentation, your > main suggestion that matplot should support Date and POSIXct objects, > is still *probably* a good one. I note that function is not generic

Re: [Rd] Request: make `var` a generic

2019-01-20 Thread Edzer Pebesma
mails shouldn't go here. > > Cheers, > Kenny > > [[alternative HTML version deleted]] > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Edzer Pebesma Institute

Re: [Rd] [FORGED] Re: plotmath degree symbol

2018-09-05 Thread Edzer Pebesma
   graphics  grDevices utils datasets  methods   base >> >> loaded via a namespace (and not attached): >> [1] compiler_3.5.1 >> >> __ >> R-devel@r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel >> > -- Edzer Pebesma Institute for Geoinformatics Heisenbergstrasse 2, 48151 Muenster, Germany Phone: +49 251 8333081 __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] plotmath degree symbol

2018-08-24 Thread Edzer Pebesma
In plotmath expressions, R's degree symbol, e.g. shown by plot(1, main = parse(text = "1*degree*C")) has sunk to halfway the text line, instead of touching its top. In older R versions this looked much better. -- Edzer Pebesma Institute for Geoinformatics Heisenbergstrasse 2,

[Rd] cumsum method in Math group

2016-06-09 Thread Edzer Pebesma
be defined for them individually or via the ‘Math’ group generic." -- Edzer Pebesma Institute for Geoinformatics (ifgi), University of Münster Heisenbergstraße 2, 48149 Münster, Germany; +49 251 83 33081 Journal of Statistical Software: http://www.jstatsoft.org/ Computers & Geosciences:

Re: [Rd] Maintainer NOTE in R CMD Check

2014-03-10 Thread Edzer Pebesma
> Hadley >> >> -- >> http://had.co.nz/ >> >> __ >> R-devel@r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel >> > > [[alternative HTML version deleted]] > &

[Rd] r-forge

2013-02-08 Thread Edzer Pebesma
facing this. Maybe the r-forge team can tap into the potential of some of its 6000 users, assuming most of these are developers wanting a good, working system? Or are financial resources a problem? -- Edzer Pebesma Institute for Geoinformatics (ifgi), University of Münster Weseler Straße 253, 48

[Rd] how to check all CRAN dependencies for my package, before submitting

2012-01-18 Thread Edzer Pebesma
list of file names of their package sources in their latest version (i.e., including their latest version number)? -- Edzer Pebesma Institute for Geoinformatics (ifgi), University of Münster Weseler Straße 253, 48151 Münster, Germany. Phone: +49 251 8333081, Fax: +49 251 8339763 http://ifg

[Rd] R Development Center(s)

2011-11-14 Thread Edzer Pebesma
. Open source style, please feel free to reuse or modify the logo or ideas, and take the concept lightly. Next thing, when I'm concerned, would be to organize an RDC student of the year award. Any reactions welcome. With best wishes, -- Edzer Pebesma Institute for Geoinformatics (ifgi), Unive

Re: [Rd] S4 method dispatch

2011-09-30 Thread Edzer Pebesma
riting your method. See ?setAs for a few more details. Someone on the list may have an example. John On 9/18/11 3:33 AM, Edzer Pebesma wrote: As a follow-up, I managed to isolate the problem I sent earlier this week, and reduced it to a small case (I'm using R 2.13.1, i486-pc-linux-gnu

Re: [Rd] S4 method dispatch

2011-09-18 Thread Edzer Pebesma
> > For instance, I have a case where consistently > > setMethod("fullgrid", c("Spatial"), > function(obj) { is(obj, "SpatialGrid") }) >> class(g) > [1] "SpatialGrid" > attr(,"package") > [1] "sp"

[Rd] S4 method dispatch

2011-09-15 Thread Edzer Pebesma
"package") [1] "sp" > fullgrid(g) [1] FALSE is obviously false, but in other cases it works fine. When I change the signature of doNothing to signature(object = "ANY", value = "ANY"), the problem disappears. I tried to make a self-contained examp