Displaying 5 results from an estimated 5 matches for "initbasicclasses".
2015 May 13
2
Unexpected failure when calling new() with unnamed arg and
...hods/R/BasicClasses.R,
> lines 524 ff has the following comment block
>
> | .OldClassesPrototypes is a list of S3 classes for which prototype
> | objects are known & reasonable. The classes will reappear in
> | .OldClassesList, but will have been initialized first in
> | .InitBasicClasses. NB: the methods package will NOT set up
> | prototypes for S3 classes except those in package base and for "ts"
> | (and would rather not do those either). The package that owns the
> | S3 class should have code to call setOldClass in its
> | initialization.
>
>...
2015 May 12
2
Unexpected failure when calling new() with unnamed arg and
Hi,
The man page for new() suggests that if 'a' is an object with slots
"slot1" and "slot2" and C is a class that extends the class of 'a',
then the 2 following calls should be equivalent:
new("C", a, ...)
new("C", slot1=a at slot1, slot2=a at slot2, ...)
This is generally the case but I just ran into a situation where it's
not.
2015 Oct 08
1
Unexpected failure when calling new() with unnamed arg and
...g comment block
>>>
>>> | .OldClassesPrototypes is a list of S3 classes for
>>> which prototype | objects are known & reasonable. The
>>> classes will reappear in | .OldClassesList, but will
>>> have been initialized first in | .InitBasicClasses. NB:
>>> the methods package will NOT set up | prototypes for S3
>>> classes except those in package base and for "ts" | (and
>>> would rather not do those either). The package that
>>> owns the | S3 class should have code to call setO...
2015 May 13
0
Unexpected failure when calling new() with unnamed arg and
...#39;s source, src/library/methods/R/BasicClasses.R,
lines 524 ff has the following comment block
| .OldClassesPrototypes is a list of S3 classes for which prototype
| objects are known & reasonable. The classes will reappear in
| .OldClassesList, but will have been initialized first in
| .InitBasicClasses. NB: the methods package will NOT set up
| prototypes for S3 classes except those in package base and for "ts"
| (and would rather not do those either). The package that owns the
| S3 class should have code to call setOldClass in its
| initialization.
So, when John Chambers wrote...
2015 Oct 08
0
Unexpected failure when calling new() with unnamed arg and
...gt;> lines 524 ff has the following comment block
>>
>> | .OldClassesPrototypes is a list of S3 classes for which prototype
>> | objects are known & reasonable. The classes will reappear in
>> | .OldClassesList, but will have been initialized first in
>> | .InitBasicClasses. NB: the methods package will NOT set up
>> | prototypes for S3 classes except those in package base and for "ts"
>> | (and would rather not do those either). The package that owns the
>> | S3 class should have code to call setOldClass in its
>> | initializa...