2011/11/8 Uwe Ligges :
>
>
> On 08.11.2011 19:08, Gabor Grothendieck wrote:
>>
>> 2011/11/8 Uwe Ligges:
>>>
>>>
>>> On 08.11.2011 17:56, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
>
>
> On 08.11.2011 17:04, Gabor Grothendieck wrote:
>>
>> 2011/11/8 Uwe Ligges:
>>>
On 09.11.2011 13:52, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
On 08.11.2011 19:08, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
On 08.11.2011 17:56, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
On 08.11.2011 17:04, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
O
2011/11/9 Uwe Ligges :
>
>
> On 09.11.2011 13:52, Gabor Grothendieck wrote:
>>
>> 2011/11/8 Uwe Ligges:
>>>
>>>
>>> On 08.11.2011 19:08, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
>
>
> On 08.11.2011 17:56, Gabor Grothendieck wrote:
>>
>> 2011/11/8 Uwe Ligges:
>>>
On 09.11.2011 15:23, Gabor Grothendieck wrote:
2011/11/9 Uwe Ligges:
On 09.11.2011 13:52, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
On 08.11.2011 19:08, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
On 08.11.2011 17:56, Gabor Grothendieck wrote:
2011/11/8 Uwe Ligges:
O
2011/11/9 Uwe Ligges :
>>>
>>> Honestly, that (svn revision) is the only part that we do not have on the
>>> front pages but they are given in the log files.
>>
>> The R version is not on the package's CRAN page, e.g.
>> http://cran.r-project.org/web/packages/sqldf/index.html I was
>> thinking of
Hi the list
I am creating a package and I have a problem to define a S4 method for plot.
I define a class 'A' and a class 'B'. I want to define a function plot for
signature c(A,missing) and another method plot for signature c(A,B). My code
is the following :
In /package/R/ directory:
--- main.R -
I was wondering if there is any interest in making the function
isChild() exported from the package parallel? This would be of great
help to anyone writing R packages that use thread-level parallelism,
and would like to throttle the spawning of threads whenever the R
process is detected to be a chi
You probably need the directive
importFrom(graphics, "plot")
in your NAMESPACE file. This lets the system know that you are using
the same "plot" function that it already knows about. And your code
should be careful not to trash a previous conversion of plot to an S4
generic function, usua
Martin Morgan wrote:
> Allocating many small objects triggers numerous garbage collections as R
> grows its memory, seriously degrading performance. The specific use case
> is in creating a STRSXP of several 1,000,000's of elements of 60-100
> characters each; a simplified illustration understa