Displaying 20 results from an estimated 3000 matches similar to: "PLATFORMS Update"
1999 Apr 01
1
PLATFORMS
Only three entries thus far.
Please keep them coming in.
-k
NAME Martyn Plummer
EMAIL plummer@iarc.fr
VERSION 0.63.3
PLATFORM i386-unknown-linux
SYSTEM Redhat 5.1
CC/FC/MAKE gcc/egcs-g77/make
NAME Douglas Bates
EMAIL bates@stat.wisc.edu
VERSION 0.63.3
PLATFORM i386-unknown-linux
SYSTEM Debian 2.1
CC/FC/MAKE egcs/g77/make
NAME Thomas
1999 Mar 06
1
Difficulties with egcs-1.0.3 on RedHat 5.2?
Some machines in our department use RedHat 5.2 Linux but, to maintain
consistency with other machines, the compilers as from egcs-1.0.3, as
shown below. When I compile R-0.63.3 on these systems I can't pass
the tests in "make check". The base-Ex.R file stops execution with
the error shown below.
...
Running all help() examples ...
../../bin/R --vanilla < base-Ex.R >
1999 May 24
1
sum(is.na(c(...)) -> negative number; bug or feature?
As I understand it, sum() treats a logical vectors as 1's and 0's, so
that
> is.logical(c(FALSE,TRUE,FALSE))
[1] TRUE
> sum(c(FALSE,TRUE,FALSE))
[1] 1
However, summing the results of an is.na() yields a
negative number. Eg
> is.na(c(1,NA,3))
[1] FALSE TRUE FALSE
> is.logical(is.na(c(1,NA,3)))
[1] TRUE
> sum(is.na(c(1,NA,3)))
[1] -1
(This is from R Version 0.64.0,
2003 Mar 12
1
'summary' with logicals (PR#2629)
Consider
> oj <- data.frame(x = c(TRUE, FALSE, NA))
> oj
x
1 TRUE
2 FALSE
3 NA
> summary(oj)
x
Mode :logical
FALSE:1
TRUE :1
But
> oj$x <- factor(oj$x)
> summary(oj)
x
FALSE:1
TRUE :1
NA's :1
My point is that NA's should be reported for logicals like they are for
other data types.
Göran
---
Göran
2002 Feb 20
3
Pointer to covariates?
In the first line, use the dist function, found in library mva,
to get the distance between each pair of rows. From this
calculate an incidence matrix for which element i,j is true if
row i in dat equals row j in dat (and false elsewhere).
In the second line, for each row calculate the indices of
the matching rows and take the minimum of those as the key.
incid <-
1999 Jul 09
4
core dump on 0.64.2 SPARC/Solaris 2.6 in eigen (PR#223)
..
R is now configured for sparc-sun-solaris2.6
Source directory: .
Installation directory: /unsup/R-0.64.2
C compiler: gcc -g -O2
FORTRAN compiler: g77 -O2
Gnome support: no
$ gcc --version
egcs-2.91.66
$ g77 --version
GNU Fortran 0.5.24-19981002
"make check" later fails. The failure is in the test of the eigen()
function. The
2002 Jan 04
2
R CMD check (PR#1240)
SunOS fluke 5.8 Generic_108528-07 sun4u sparc SUNW,Ultra-Enterprise
R-1.4.0
Running from the command line
R CMD check chlib
results in the log file 00check.log:
* using log directory `/home/woodstock/hoffmann/R/Sources/chlib.Rcheck'
* checking for file `chlib/DESCRIPTION' ... OK
* checking package directory ... OK
* checking for sufficient/correct file permissions ... WARNING
*
2002 Oct 17
2
'text' can't find "x"
I wanted to add some text to a plot and got (R-1.6.0, Linux):
> text(x = c(1, 4), y = 5, labels = x)
Error in text.default(x = c(1766, 1895), y = 5, labels = x) :
Object "x" not found
With the default value of 'labels':
> text(x = c(1, 2), y = 5, labels = seq(along = x))
Error in seq(along = x) : Object "x" not found
A scoping bug? :)
But
>
2003 Mar 29
1
compling errors for sun unix (PR#2702)
--Scraw_of_Flies_285_000
Content-Type: TEXT/plain; charset=us-ascii
Content-MD5: eXeT31BJngKeovsqhTpOHg==
Dear R-project,
I am having difficulty compiling R for my unix machine. Attached is the
config.log file that has all the necessary info. Can you help?
Thank you.
Mutlu..
-------------------------------
Mr. Mutlu Ozdogan
Center for Remote Sensing
Boston University
725 Commonwealth Avenue
1999 Dec 07
4
Finding indices with a certain property
I want the indices i for which x[i] < 0 (say):
> x <- c(1, -1, 3, 3, -2)
> where.negative(x)
[1] 2 5
Surely where.negative is something simple, but how?
G?ran
--------------------------------------------------------------
G?ran Brostr?m
Department of Statistics tel: +46 90 786-5223
Ume? University fax: +46 90 786-6614
S-90187 Ume?, Sweden
2011 Sep 12
1
coxreg vs coxph: time-dependent treatment
Dear List,
After including cluster() option the coxreg (from eha package)
produces results slightly different than that of coxph (from survival)
in the following time-dependent treatment effect calculation (example
is used just to make the point). Will appreciate any explaination /
comment.
cheers,
Ehsan
############################
require(survival)
require(eha)
data(heart)
# create weights
2001 Jan 30
1
link in FAQ incorrect (PR#833)
Hi,
the link to the R code for repeated measurement analyses of J Lindsey is
unfortunately not working. I am desperate for repeated measurements in
R; could you please help me out.
Sincerely,
Dr. G. Stoet
--
Dr. Gijsbert Stoet
email: stoet@thalamus.wustl.edu
Web: http://eye-hand.wustl.edu/lab/people/stoet.html
Phone: (314)7474095 Fax: (314)7474370
1999 Apr 30
2
Graphs
I am trying to use the Windows version of R to do the following:
- Have a Delphi front-end which gets the user input
- Delphi will produce a R script, do a system call to R to
calculate the statistics.
Is there a better way? Maybe a library one can use in Delphi or
Visual C?
- How do one see a graph? A graph is plotted in a window which
IMMEDIATELY closes afterwords so that one can't
1998 Oct 25
2
EGCS optimizer bug?
The current development version dies in qbeta() when compiled with
egcs -O, egcs 1.0.2 and glibc 2.0.7 (RedHat versions). Since this also
kill the F and t distributions, it doesn't exactly do wonders for R's
usefulness...
Anyone else seeing this or has my setup just gone out of whack? It
does look pretty much like a clear compiler bug when inlining math
functions (storing temporaries
1998 Nov 12
1
bug: file time travels when updating
Hi, I think I've found a bug.
When I create a file from win95 it's stored in the server with the
date of creation. (that's ok)
If I update the file from win95 the date of the file changes but
it's stored as one hour less than it should be. (not so ok)
example:
1.- I create a file at 16:45
$ ls -ld b.txt
Nov 12 16:45 b.txt
2.- I update that file one minute
2002 Apr 18
1
strptime mysteriously adds a day - 0S-specific: Linux and (PR#1467)
On Thu, 18 Apr 2002, Martin Maechler wrote:
> >>>>> "Jason" == Jason Turner <jasont@indigoindustrial.co.nz> writes:
>
> Jason> strptime() mysteriously adds a day to a date, unless the year
> Jason> is specified. Tested on:
> Jason> Linux (RedHat 6.0) - R version 1.4.1 and R-devel.
> Jason> Windows - R version 1.4.1
>
2002 Jun 27
3
OpenSSH 3.4p1 - compilation problem on Linux
Hello openssh-unix-dev,
Some time ago I successfully compiled version 3.1 of OpenSSH.
Today I tried new OpenSSH version and I am not able to compile it.
Configuration script runned well. When running make, following error
occured:
make[1]: Entering directory `/tools/openssh-3.4p1/openbsd-compat'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory
2013 Oct 16
2
How to obtain restricted estimates from coxph()?
Hello,
I'm trying to use coxph() function to fit a very simple Cox proportional
hazards regression model (only one covariate) but the parameter space is
restricted to an open set (0, 1). Can I still obtain a valid estimate by
using coxph function in this scenario? If yes, how? Any suggestion would be
greatly appreciated. Thanks!!!
[[alternative HTML version deleted]]
2002 Sep 19
2
R 1.6 for windows?
On Thu, 19 Sep 2002 10:43:01 -0400 (EDT), you wrote in message
<200209191443.KAA17404@falmouth.bwh.harvard.edu>:
>Hi Duncan -- I am curious as to whether you are building/distributing
>R 1.6.0 for windows? There's nothing urgent about it, I have one.
>The question is how to identify a distribution URL if one exists.
I will be building and distributing the final release.
2011 May 02
3
ID parameter in model
Hello,
I am apparently confused about the use of an id parameter for an event
history/survival model, and why the EHA documentation for aftreg does
not specify one. All assistance and insights are appreciated.
Attempting to specifiy an id variable with the documentation example
generates an "overlapping intervals" error, so I sorted the original
mort dataframe and set subsequent entry