Displaying 20 results from an estimated 6000 matches similar to: "Limitations of generic functions"
2005 Apr 20
5
Overloading methods in R
(1) It seems to me that, generally, in R it is not possible to overload
functions. Is that right?
(2) Assuming that the above is true, or partially true, is there any extra
packages to handle overloading in R?
(3) Assuming (1) is TRUE and (2) is FALSE, can anyone provide some advice on
developing some function that understand what the arguments are and then
calls the right overloaded
2016 May 25
3
Suggestion: mkString(NULL) should be NA
On Wed, May 25, 2016 at 7:22 AM, Michael Lawrence <lawrence.michael at gene.com
> wrote:
> On Wed, May 25, 2016 at 4:23 AM, Jeroen Ooms <jeroen.ooms at stat.ucla.edu>
> wrote:
>
I'm not disagreeing with what's been said in this thread, but I can't help
but recall that I brought up this exact issue probably 15 years ago and was
told (by Brian, I believe)
2005 Sep 07
2
AACPlus Shoutcast v1.90
On Tue, Sep 06, 2005 at 09:56:06PM -0500, Jay Krivanek wrote:
> Yea, don't get me wrong, ogg is definitely an awesome format but aacplus v2
> is currently the leader in high fidelity quality at low bitrates. 24kbps
> aacplus even kicks ass in my view.
Is that 24kbps AACPLUS a full 44.1kHz stereo signal with frequencies
preserved up to at least 15kHz? (Just curious, not
2007 Jun 07
1
Ubu edgy + latest CRAN R + Rmpi = no go
I'm just curious if anyone else has had problems with this
configuration. I added the CRAN repository to apt and installed 2.5.0
with apt-get. I then did an install.packages("Rmpi") on cluster nodes.
Rmpi loads and lamhosts() shows the nodes, but mpi.spawn.Rslaves()
fails (something to do with temp files?). Rmpi works fine with the
Edgy-native version of R (2.3.x) and installing
2017 Mar 30
2
Transferring ownership of R-managed buffer
On Wed, Mar 29, 2017 at 4:56 PM, Gabriel Becker <gmbecker at ucdavis.edu>
wrote:
> The concept of having a vector which is a "window" into another vector
> without duplication ( which I suspect is at least related to your use-case,
> though I could be wrong) is a special case of one of alt-representations I
> have implemented there.
>
Nice. That is exactly what I
2015 Nov 10
3
idmap & migration to rfc2307
On 10/11/15 17:47, Jeremy Allison wrote:
> On Tue, Nov 10, 2015 at 09:14:13AM +0100, buhorojo wrote:
>> We don't think that is fair. We may not represent the views of the
>> developers but we do feel that we are entitled to air our views
>> here. We have support off-list, mainly from those who feel
>> restricted in what they say here. Please do not use your power to
2007 Aug 17
3
Any parser generator / code assistance for R?
Hi,
Is there any parser generator like www.antlr.org? Moreover, how does simple
code assistance work currently in R? By 'simple code assistance' I meant
things like:
Object$M<TAB> --> Object$Method
2017 Mar 29
3
Transferring ownership of R-managed buffer
I have a use case where I would like to create an SEXP around an existing
buffer that is managed by R, thus avoiding a copy operation. If I have
something like:
void *p = (void*) RAW(PROTECT(Rf_allocVector(RAWSXP, n)));
... additional maniupulation ...
SEXP x = somefunc(SXPTYPE, n, p); // ????
Is there a "placement" constructor available? (I have arranged for the
corresponding
2015 Oct 07
2
authorship and citation
On 07/10/2015 1:39 PM, Tim Keitt wrote:
> On Wed, Oct 7, 2015 at 11:29 AM, Spencer Graves <spencer.graves at prodsyse.com
>> wrote:
>
>> Another example: The "Author" of the Ecdat package is Yves Croissant <
>> yves.croissant at let.ish-lyon.cnrs.fr>. I'm the Maintainer. At some
>> point, I may add my name to the list of Authors but I
2002 Mar 05
1
R help search engine/ windows crashable
System info:
R Version 1.4.1 (2002-01-30) on Windows 2000
ESS v. 5.1.20 using emacs ver. 20.1.1
Colleagues
Problem:
Over the last several versions of R, I have noticed that the HTML for R
help search engine brought up by help.start() under ESS tends to crash
on my machine periodically. By this I mean the web browser exits.
Test case:
For example, from the R buffer in ESS I typed
2015 Apr 21
1
Typo in src/scripts/config
Was writing a short R script to modify compile flags and saw this typo:
Index: config
===================================================================
--- config (revision 68217)
+++ config (working copy)
@@ -61,7 +61,7 @@
CXX1X C++ compiler command for C++11 code
CXX1XSTD flag used to enable C++11 support
CXX1XFLAGS C++11 compiler flags
- CXX1XXPICFLAGS
+
2006 Jan 04
6
ajax in rails is a security violation
Does anybody have any issues with the AJAX code inside rails? Whenever i
use any sites i have built, or even external sites (such as basecamphq) my
internal security device blocks access to the Ajax piece with a 400 Bad
Request ( i scoured the net for other ajax examples and no isses anywhere
else). I think there is something in the AJAX code of rails that is not
implemented correctly. Has
2002 Apr 16
1
[Fwd: Re: Multithreading]
Oops. Seems I only sent this to myself.
T.
-------------- next part --------------
An embedded message was scrubbed...
From: "Timothy H. Keitt" <tklistaddr at keittlab.bio.sunysb.edu>
Subject: Re: [R] Multithreading
Date: 16 Apr 2002 12:34:52 -0400
Size: 2091
Url: https://stat.ethz.ch/pipermail/r-help/attachments/20020416/dd6c9385/attachment.mht
2007 May 30
4
Connecting to PostgreSQL/PostGIS from R (rgdal?)
Hello,
I've been trying every now and then to find a cross operating system
solution that would let me access PostgreSQL (and PostGIS) from R, or to
access R from PostgreSQL. I know of pl/r, which accomplishes the
latter, but has yet to be successfully ported to Windows. Similarly,
I've tried to use Rdbi and DBI, but I haven't had luck with those on
Windows either for connecting to
2017 Mar 29
2
Transferring ownership of R-managed buffer
http://www.keittlab.org/
On Wed, Mar 29, 2017 at 1:04 PM, Herv? Pag?s <hpages at fredhutch.org> wrote:
> Hi Tim,
>
> On 03/29/2017 08:24 AM, Tim Keitt wrote:
>
>> I have a use case where I would like to create an SEXP around an existing
>> buffer that is managed by R, thus avoiding a copy operation.
>>
>
> What to you mean exactly by "an existing
2006 Oct 16
1
The old question: R vs MATLAB vs Mathematica vs ...
Hi,
This question seems to be old, however I am asking it from a different point
of view.
R introduces itself as a 'statistical' language and environment. There are
many discussions about comparing R to MATLAB or mathematica (or other
similar software). It seems to me that these other software have a broader
range of applications. For example, in Mathematica one can solve a partial
2024 Oct 09
0
[PATCH 00/51] treewide: Switch to __pm_runtime_put_autosuspend()
On Wed, Oct 9, 2024 at 2:48?PM Richard Fitzgerald
<rf at opensource.cirrus.com> wrote:
>
> On 08/10/2024 7:24 pm, Rafael J. Wysocki wrote:
> > On Tue, Oct 8, 2024 at 12:35?AM Ulf Hansson <ulf.hansson at linaro.org> wrote:
> >>
> >> On Tue, 8 Oct 2024 at 00:25, Laurent Pinchart
> >> <laurent.pinchart at ideasonboard.com> wrote:
>
2005 Apr 24
1
Collade doesn't work for more than 256 files!
Last week I managed to automatically wrap over 600 C++ classes into R in
less than 24 hours. It was not because I am an expert in R programming, it
was simply because I wrapped the classes as S3. Not only the wrapping
process was easy, but also installation process and loading the final
library was fast too.
Now I am also trying to do the wrapping into the 'modern' S4 classes. This
2014 May 22
1
Excluding objects from save.image
When dealing with object holding pointers that are only valid during a
single session, it would be convenient to exclude them from being saved
with the session image. (I am assuming that `quit` calls `save.image`
before quitting or is it internal?) Currently they are saved with the
pointer converted to NULL. Its a bit surprising for users not realizing the
object is no longer valid.
My thought is
2002 Nov 09
1
MFWorks and R
I know there is some integration between Grass and R available, but
has anyone produced a link between R and MFWorks.
I am considering Buying MFWorks (Windows) and it would be useful to
know if anyone has written such a link.
Many thanks,
Graham S
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read