Byron Ellis <[EMAIL PROTECTED]> writes:
> OutByte should take a byte, not an int. Writing the first byte of an
> int is only going to work on little endian systems.
>
> serialize.c:262
> -static void OutByte(R_outpstream_t stream, int i)
> +static void OutByte(R_outpstream_t stream, Rbyte i)
Tha
OutByte should take a byte, not an int. Writing the first byte of an
int is only going to work on little endian systems.
serialize.c:262
-static void OutByte(R_outpstream_t stream, int i)
+static void OutByte(R_outpstream_t stream, Rbyte i)
---
Byron Ellis ([EMAIL PROTECTED])
"Oook" -- The L
Hi all, this should be a relatively straightforward question. I am
constructing an R list in C which will contain both Integers and Strings
(by string I mean in C I have const char* whose values I want passed
through to R) The Integers are easy. I do something like this:
PROTECT(tmp = NEW_INTE
> "UweL" == Uwe Ligges <[EMAIL PROTECTED]>
> on Sat, 04 Jun 2005 11:43:34 +0200 writes:
UweL> (Ted Harding) wrote:
>> On 03-Jun-05 Ted Harding wrote:
>>
>>> And on mine
>>>
>>> (A: PII, Red Had 9, R-1.8.0):
>>>
>>> ff <- c(0,10,250,5000); dim(ff) <- c
On Sat, 4 Jun 2005, Uwe Ligges wrote:
>Dan Bolser wrote:
>
>> Hi, I forgot the name of the function 'colSums', and expected to be able
>> to find it through the 'see also' section of the documentation for the
>> 'sum' function.
>
>Good idea, I think it might be worth to be added to ?apply as well.
(Ted Harding) wrote:
On 03-Jun-05 Ted Harding wrote:
And on mine
(A: PII, Red Had 9, R-1.8.0):
ff <- c(0,10,250,5000); dim(ff) <- c(2,2);
1-fisher.test(ff)$p.value
[1] 1.268219e-11
(B: PIII, SuSE 7.2, R-2.1.0beta):
ff <- c(0,10,250,5000); dim(ff) <- c(2,2);
1-fisher.test(ff)$p.value
[1]
Dan Bolser wrote:
Hi, I forgot the name of the function 'colSums', and expected to be able
to find it through the 'see also' section of the documentation for the
'sum' function.
Good idea, I think it might be worth to be added to ?apply as well.
Here is the diff I made of the altered docume