Displaying 20 results from an estimated 10000 matches similar to: "conditional function definition?"
2004 Jun 15
4
"Glueing" factors together
Hi folks,
Suppose I have a series of cases each with categorical
factors A, B.
What is the best way to "glue" A and B together into a single
factor? For example, given
A0 B1 ...
A1 B1 ...
A0 B2 ...
A1 B0 ...
A0 B0 ...
A1 B2 ...
then I'd like to end up with a single factor with levels
A0B0, A0B1, A0B2, A1B0, A1B1, A1B2
according to all the combinations which actually occur in
2004 Jul 06
5
Converting S-Plus Libraries to R
Dear all!
I'd like to do multiple imputation of missing values with s-plus libraries
that are provided by Shafer (http://www.stat.psu.edu/~jls/misoftwa.html). I
wonder, whether these libraries are compatible or somehow convertible to R
(because I don't have S-plus), so that I can use this functions using the R
Program.
I would be happy if you could tell me,
-if it is possible to use
2003 Apr 29
1
Shafer's MIX: Query on code
Thanks to Fernando Tusell and especially to Brian Ripley for
their work on 'mix', leading to an apparently good package
mow available on CRAN.
Going through the R code for the function prelim.mix, I am
wondering why the following method of calculation is used
at one point:
umd <- as.integer(round(exp(cumsum(log(d)))))
(d is a vector containing, in effect, the numbers of levels of
2004 May 12
4
missing values imputation
What R functionnalities are there to do missing values imputation (substantial proportion of missing data)?
I would prefer to use maximum likelihood methods ; is the EM algorithm implemented? in which package?
Thanks
Anne
----------------------------------------------------
Anne Piotet
Tel: +41 79 359 83 32 (mobile)
Email: anne.piotet@m-td.com
2004 Jan 12
3
? data.entry "read-only" ?
Hi Folks,
The spreadsheet-like layout displayed when 'data.entry' is
invoked is very useful simply for legible display of data,
quite apart from its intended use for the purpose of entering
or editing data.
If one wants to use it _simply_ as a display device, so that
one can look around inside a data-set while working on it,
then it is not a good idea to have its _editing_ capabilities
2002 Dec 10
3
clogit and general conditional logistic regression
Can someone clarify what I cannot make out from the
documentation?
The function 'clogit' in the 'survival' package is
described as performing a "conditional logistic regression".
Its return value is stated to be "an object of class clogit
which is a wrapper for a coxph object."
This suggests that its usefulness is confined to the sort of
data which arise in
2002 Dec 17
4
Quick tip please!
I have two CSV files (exported from Excel), say file1 and file2.
The have the same number of rows, and each has several columns,
with names on the first line; and some of the columns in file1
are repeated in file2.
Using the "foreign" package, I can read these in separately
to dataframes say d1 and d2 with
> d1<-read.csv("file1")
>
2003 Jun 25
2
Execution of R code
Greetings Folks,
When R code (as entered or read from a courced file) is executed,
is it interpreted from the input form every time having once been
read in, or do subsequent invocations use an "intermediate"
(pre-interpreted) form?
Or, putting it another way, is the execution of R code faster
second time time round (and later) because the pre-interpretation
has already been done once
2003 Oct 09
4
Automatic re-looping after error
Hi Folks,
I'm seeking advice about how to resume an outer loop following
failure of a function within the loop (which issues an error
message).
Essentially, I'm repeating (simulating) a process which involves
random sampling, EM and MCMC. I'm walking on very edge of rather
thin ice -- data rather thinly spread over many parameters!
Occasionally some component of the loop fails, with
2003 Sep 04
3
Putting regression lines on SPLOM
Sorry Folks,
I'm sure I could suss out the answer myself but I need it
soon ... !
1. Given a set of 4 variables X,Y,Z,W in a dataframe DF, I make
a scatter-plot matrix using splom(DF).
2. I do all regressions of U on V using lm(U~V), where U and V
are all 12 different ordered pairs from X,Y,Z,W.
3. Now I would like to superpose the regression lines from (2)
onto the corresponding
2004 May 04
2
Superposing data on boxplot
Hi folks,
I have a vaiable Y and an associated factor Z at several (13)
levels.
boxplot(Y~Z)
produces a nice array of boxplots, one for each level of Z,
and each duly labaelled with its level of Z.
I would like to superpose on each boxplot the actual data
points which it represents, i.e. do something conceptually
(though not in real R) expressed as
points(Y~Z)
or
points(Z,Y)
It can
2003 Jul 06
1
Conditional Distribution of MVN variates
Hi Folks,
Given k RVs with MVN distribution N(mu,S) (S a kxk covariance matrix),
let (w.l.o.g.) X1 denote the first r of them, and X2 the last (k-r).
Likewise, let mu1 and mu2 denote their respective expectations.
Then, of course, the expectation of X2 given X1=x1 is
mu2 + S21*inv(S22)*(x1 - mu1)
and the covariance matrix of X2 given X1=x2 is
S22 - S21*inv(X11)*S12
where Sij is the
2003 Jun 20
4
Spedd: R vs S-plus
Hi Folks,
Sorry to raise what has probably been discussed before,
but I an repeatedly struck by the comparative slowness
of S-plus for Windows compared with R for Linux when doing
much the same thing.
I don't have a direct comparison, because they're not
running on the same machine; but machine W has a faster
CPU and more RAM than machine L, yet S-plus on W seems
to take longer by quite
2002 Oct 17
3
Non-central distributions
Hi Folks,
I note that, while the "chisq" functions
dchisq(x, df, ncp=0, log = FALSE)
pchisq(q, df, ncp=0, lower.tail = TRUE, log.p = FALSE)
qchisq(p, df, ncp=0, lower.tail = TRUE, log.p = FALSE)
rchisq(n, df, ncp=0)
all have a slot for the non-centrality parameter "ncp", of
the functions for the t and F distributions:
dt(x, df, log = FALSE)
2003 Nov 22
2
lm with ordered factors
Hi Folks,
No doubt a question with a well-known answer, but I'm unfortunately
not managing to find it readily ... !
I have a quantitative variable Y and a 4-level ordered factor A
(with very unequal numbers at the different levels, by the way).
The command
lm(Y ~ A)
returns (amongst other stuff) an intercept, and coefficients
A.L, A.Q and A.C for the Linear, Quadratic and Cubic effects.
2002 Apr 08
4
Missing data and Imputation
Hi Folks,
I'm currently looking at missing data/imputation
methods (including multiple imputation).
S-Plus has a "missing data library".
What similar resources are available within R?
Or does one roll one's own?
Best wishes to all,
Ted.
--------------------------------------------------------------------
E-Mail: (Ted Harding) <Ted.Harding at nessie.mcc.ac.uk>
2001 Jul 29
2
Trellis graphics and clipping
Hi again folks,
I seem to have got the trellis (lattice + grid) business
working basically OK, in that I can get my 5x5 array of
histograms laid out as they should be.
However, there is a behaviour I can't see my way round.
Even when displayed in the R Graphics Window, there is
some clipping (the extreme top, bottom, left and right
edges are not there, so that labels, and parts of numerical
2003 May 24
3
help output paged in separate window
Hi folks,
I use R in X windows on Linux.
Normally, I use 'less' as pager, which is fine for scanning through
'help' (or '?') output in the R window itself; the help session is
terminated by typing "q", as usual for 'less', and the R window then
reverts to the R command line interface.
Often, I would like to have the output from 'help' pop up in
2003 May 24
3
help output paged in separate window
Hi folks,
I use R in X windows on Linux.
Normally, I use 'less' as pager, which is fine for scanning through
'help' (or '?') output in the R window itself; the help session is
terminated by typing "q", as usual for 'less', and the R window then
reverts to the R command line interface.
Often, I would like to have the output from 'help' pop up in
2003 Jul 14
2
qualitative response model
Hi, I want to know is there other functions in R to
estimate qualitative response model besides multinom()
in library nnet, if this is the only possibility, I
have a question about the application:
for example:
there is three transportation choice : car, bus ,
subway.
each alternative has own characteristic variables,
I want to apply conditional logit model to analysis
the choice of three