Displaying 20 results from an estimated 7000 matches similar to: "'text' can't find "x""
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 <-
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
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
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
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 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
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 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.
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,
2004 Dec 07
1
read.spss: unrecognized record type
When reading an spss file, I get the following message:
Warning message:
../totmorH.sav: Unrecognized record type 7, subtype 13 encountered in system file.
What does it mean? Do I have to worry? The result looks as expected. I do
not have (easy) access to SPSS, so I cannot check exactly that I got what I
should have.
Thanks,
G??ran
And, I'm using R-2.0.1 on Debian testing (from source).
2005 Mar 24
1
Books on survival analysis and R/S
I will be giving a course in survival analysis using R (of course!) for
people who know nothing about the subject (including R), but know basic
statistics. I'm looking for a suitable course book. Therneau & Grambsch
(2000) is an excellent book, but too much for this course. I need somthing
more elementary.
I have a vague memory saying that such books exist, but I cannot find any
for the
2005 Jan 25
2
tapply and names
I have a data frame containing children, with variables 'year' = birth
year, and 'm.id' = mother's id number. Let's assume that all the births of
each mother is represented in the data frame.
Now I want to create a subset of this data frame containing all children,
whose mother's first birth was in the year 1816 or later. This seems to
work:
mid <-
2003 May 14
2
Two names of a function
Is it possible to let a function be known under two names without having
two identical copies of the function body?
---
G?ran Brostr?m tel: +46 90 786 5223
Department of Statistics fax: +46 90 786 6614
Ume? University http://www.stat.umu.se/egna/gb/
SE-90187 Ume?, Sweden e-mail: gb at stat.umu.se
2004 Sep 20
0
[Old '.so' file
I noticed the same thing as I reported below, when I upgraded from
R-2.0.0-alpha-20040918 to today's beta version:
'R CMD check' failed as before; but after cleaning 'src' from .o and .so
files, it worked again. So the two-day-old '.so' file is obviously different
from today's. Has compiler directives changed in the two last days? Or what
is happening?
G?ran
On
2003 Jun 20
3
namespaces not available
This happened to me with R-1.7.0, Linux RH9:
------------------------------------------------------------------
> q()
Save workspace image? [y/n/c]: y
Warning messages:
1: namespaces may not be available when loading
2: names in persistent strings are currently ignored
gb at lasker:~/R/test$ R
R : Copyright 2003, The R Development Core Team
Version 1.7.0 (2003-04-16)
R is free software
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
2003 Dec 18
1
Manova
Dear R-helpers,
In a data set I got from a medical doctor there are six treatment groups
and (about) 5 bivariate responses in each group. Using 'manova', it is
easy to see significant differences in treatment effects, but the doctor
is more interested in the correlation between the two responses (within
groups). I'm willing to assume a common value over groups, and one way
of
2004 Sep 19
1
Namespace problem
Now I try to add some C and Fortan code to my package, so the NAMESPACE
file is
useDynLib(eha)
importFrom(survival, Surv)
export(mlreg.fit, risksets)
but I get
.....
* checking R files for library.dynam ... OK
* checking S3 generic/method consistency ... WARNING
Error in .try_quietly({ : Error in library(package, lib.loc = lib.loc, character.only = TRUE, verbose = FALSE) :