Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

20 results for “from:Knut M. Wittkowski”

Normality Test on several groups
Knut M. Wittkowski · Feb 6, 2004 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20040206/a8d4db3c/attachment.pl

array dimension changes with assignment
Knut M. Wittkowski · May 12, 2008 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080513/5bcebbfe/attachment.pl>

wilcoxon-pratt signed rank test in R - drug-effiacy
Knut M. Wittkowski · Dec 1, 2003 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20031201/588705ef/attachment.pl

Code for "Screenshots" graphics (following on from ease-of-use issues on www.r-project.org)
Knut M. Wittkowski · Nov 15, 2006 · r-help

Apologies if this is the wrong list, but could somebody put the information on how to create the graphs on http://www.r-project.org/screenshots/screenshots.html (or a link to these instructions) next to the graphs?

alternate rank method
Knut M. Wittkowski · Jun 28, 2004 · r-help

Try: MxRank <- function(x, na.last = "keep") { if (na.last != "keep") return(rank(x, na.last)) else { r <- x*NA NoWarn(r[is.orderable(x)] <- rank(x,na.last=NA)) return(r) } } Knut M. Wittkowski, PhD,DSc ------------------------------------------ The Rockefeller University...

generalized Kruskal/Friedman test for replicated blocked data
Knut M. Wittkowski · Nov 13, 2006 · r-help

We are in the final stage of testing a unification, generalization, and speed-improvement of 'kruskal.test' and 'friedman.test' (tentatively named 'prentice.test') and are inviting comments before turning this into a package. The script and the draft help...

Code for "Screenshots" graphics (following on from ease-of-use issues on www.r-project.org)
Knut M. Wittkowski · Nov 16, 2006 · r-help

Patrick Drechsler <patrick <at> pdrechsler.de> writes: > > Knut M. Wittkowski wrote: > > Apologies if this is the wrong list, but could somebody put the > > information on how to create the graphs on > > http://www.r-project.org/screenshots/screenshots.html (or...

How to avoid test for NAs in foreign function call
Knut M. Wittkowski · Dec 13, 2006 · r-help

We have packed logical vectors into integers, 32 flags at a time and then want to AND or OR these vectors of "integers" using other C functions. The problem: occasionally, the packed sequence of 32 logical values resembles NA, causing...

Rounding problem R vs Excel.
Knut M. Wittkowski · Jun 4, 2003 · r-help

At 10:43 2003-06-04 -0300, you wrote: >David A. Paul wrote: > > > I don't have the reference, but a biologist friend of mine once > > showed me a refereed journal article that purported to demonstrate > > numerical errors made by...

logo
Knut M. Wittkowski · Mar 29, 2004 · r-help

Dear Cecilia, while Saghir and Kjetil may have a point, guidances are no laws. After all, it's your presentation and only you can decide what suits the specific purpose best. An R logo can be found on http://www...

normality test
Knut M. Wittkowski · Feb 17, 2004 · r-help

Hello Samuel, Regardless of some more fundamental problems (see below), a test to "prove" normality based on a sample of 9? - Fugetaboutit. Knut At 10:20 2004-02-06 +0100, I wrote: >... > >It may be tempting to interpret a non...

Cochran-Mantel-Haenszel problem
Knut M. Wittkowski · Dec 11, 2003 · r-help

Hi Arne, This seems to be more a statistics than an R problem. Let's assume, one stratum is male and the other is female, and that you are giving estrogen. With women, it may be better to have more...

The W statistic in wilcox.exact
Knut M. Wittkowski · Nov 16, 2006 · r-help

> Jue: In R, wilcox.test does not actually do the Wilcoxon, but the Mann Whitney test. While the tests are equivalent, the former is based on the rank sum, while the latter is based on the sum of u-scores...

kruskal wallis for manova?
Knut M. Wittkowski · Nov 21, 2003 · r-help

Nicolaas: All linear rank tests, including the Kruskal-Wallis test, can be applied to multivariate data, provided that all the variables have the same orientation as an underlying unmeasurable (latent) factor. You score the multivariate observations first and then treat...

Normality Test on several groups
Knut M. Wittkowski · Feb 8, 2004 · r-help

Andy and Peter: Of yours, both of you are right. Re h2g2 (Adams DN 1979): >"[42] quite definitely is the answer. I think the problem, to be quite >honest with you, is that you've never actually known what the...

efficient R code
Knut M. Wittkowski · Feb 9, 2005 · r-help

Last Friday, Gregory Chaitin (http://www.umcs.maine.edu/~chaitin/lm.html) mentioned that there can be no proof that a given code is the shortest for a problem, even within a language. Still, the script below, a replacement of...

qwilcox
Knut M. Wittkowski · Jun 10, 2003 · r-help

The function 'wilcox.test' in R and S gives (almost) identical results (see below). 'qwilcox' however, does not: > qwilcox(p,5,5) p: 0.025 0.975 -------------------- R> 3 22 S> 18 37 I originally wanted to ask a questions...

mannwitney
Knut M. Wittkowski · May 12, 2004 · r-help

At 14:12 2004-05-12 +0100, you wrote: >Hi, > >I would like to do a MannWitney test. >Can anyone help me with the proper command? > >Thanks, >Margarida You may use wilcox.test or qwilcox, but beware of some subtleties...

R summary (and quantiles)
Knut M. Wittkowski · May 29, 2003 · r-help

Matthias The function "fivenum", defines quantiles by assuming that the i-th order statistic is the (i-0.5)/(length(x)) quantile. Thus, it defines a 25% quantile by finding the cutoff point where 25% are below and 75% above...

quantile function
Knut M. Wittkowski · Feb 6, 2004 · r-help

Another problem with the R function "quantile" is that its definition of "quantiles" may be not what you expect. Consider the following: > x <- matrix(c(1:4)) > quantile(x,c(0,.25,.5,.75,1)) 0% 25% 50% 75% 100...

Can't find what you're looking for? Try searching with Google .