Displaying 20 results from an estimated 4000 matches similar to: "Pointer to covariates?"
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 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
>
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
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
*
1999 Apr 02
4
PLATFORMS Update
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 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 Göran Broström
EMAIL gb@stat.umu.se
VERSION 0.63.3
PLATFORM
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 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.
2002 Oct 01
6
R-1.6.0 is released
I've rolled up R-1.6.0.tgz a short while ago. This is a major upgrade,
with several new features.
A few of the changes generate compatibility issues. You may wish to
consult http://developer.r-project.org/160update.txt.
We no longer ship the set of recommended packages separately, but
bundle them up with the main distribution. Thus there is now only a
single file to fetch and (barring
2002 Oct 01
6
R-1.6.0 is released
I've rolled up R-1.6.0.tgz a short while ago. This is a major upgrade,
with several new features.
A few of the changes generate compatibility issues. You may wish to
consult http://developer.r-project.org/160update.txt.
We no longer ship the set of recommended packages separately, but
bundle them up with the main distribution. Thus there is now only a
single file to fetch and (barring
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
2002 Sep 10
9
R 1.6.0 beta
R 1.6.0 has gone into final feature freeze as of today.
As a new feature, we'll make interim beta versions available via
ftp://cran.us.r-project.org/pub/R/src/base
alias
http://cran.us.r-project.org/src/base
(filename R-1.6.0beta_*.tar.gz, where * is the creation date).
If you want to help ensure that the final 1.6.0 works satisfactorily
on *your* platform, it might be a good idea to
2002 Feb 20
3
importing images
I would like to import "tif" images in R and I do not find any
function that can do that. In Matlab there exists the function "imread"
that can read the most known images format. Does a similar function
exist for R ?
Thanks in advance
--
Herve CARDOT
____________________________________________________________
Unite Biometrie et Intelligence Artificielle, INRA Toulouse
BP
2002 Oct 08
1
Numeric to factor
I find 'How do I convert factors to numeric?' in the FAQ (7.12), but not
the other way around. Trivial maybe, but
> codes(factor(c(2, 10))
[1] 2 1
> codes(factor(c(2, 9)))
[1] 1 2
How do I get the levels attached to the codes in numeric order?
G?ran
---
G?ran Brostr?m tel: +46 90 786 5223
Department of Statistics fax: +46 90 786 6614
Ume? University
2003 Jun 07
2
Ordering long vectors
I need to order a long vector of integers with rather few unique values.
This is very slow:
> x <- sample(rep(c(1:10), 50000))
> system.time(ord <- order(x))
[1] 189.18 0.09 190.48 0.00 0.00
But with no ties
> y <- sample(500000)
> system.time(ord1 <- order(y))
[1] 1.18 0.00 1.18 0.00 0.00
it is very fast!
This gave me the following idea: Since I don't care
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
2005 Aug 19
2
Handling dates
I have a problem with some functions handling dates, in packages 'date' and
'survival' (they seem to be identical). For instance, from the documentation,
--------------------
mdy.date {survival}
R Documentation
Convert to Julian Dates
Description
Given a month, day, and year, returns the number of days since January 1, 1960.
Usage
mdy.date(month, day, year, nineteen = TRUE,
2005 Jun 24
1
interpreting Weibull survival regression
Hi,
I was wondering if someone can help me
interpret the results of running
weibreg.
I run the following and get the
following R output.
> weibreg(Surv(time, censor)~covar)
fit$fail = 0
Call:
weibreg(formula = Surv(time,
censor)~covar)
Covariate Mean Coef
Rel.Risk L-R p Wald p
covar 319.880 -0.002 0.998
0.000
log(scale) 0.000 8.239
2002 Apr 18
0
strptime mysteriously adds a day - 0S-specific: Linux and (PR#1468)
On Thu, 18 Apr 2002 ripley@stats.ox.ac.uk wrote:
> 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
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 Dec 25
2
inv.logit (package boot) (PR#2394)
Full_Name: Ole Christensen
Version: 1.6.1
OS: linux-gnu
Submission from: (NULL) (130.225.18.176)
In package boot :
> inv.logit(800)
[1] NaN
where it should have been 1.
The problem is caused by exp(x) returning Inf when x is large.
One way of fixing the problem [there may be better ways] would be to include the
line
out[x > 709] <- 1
in inv.logit()
Cheers Ole
>