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.

385 results for “from:Torsten Hothorn”

x-server
Torsten Hothorn · Mar 9, 2000 · r-help

> Sure, I know I cannot demand too much from free software (R is > really exception in this respect!). And Linux/GNU, GIMP, apache, xgobi, .... ???? Torsten -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ...

R courses in Germany
Torsten Hothorn · Sep 27, 2004 · r-help

The second part of the R courses at the University of Hanover will take place at November 15th and 16th. Topics include * Multiple Comparisons in R (Frank Bretz and Ludwig A. Hothorn) * Regression and Classification in R (Torsten Hothorn) and...

[R-jobs] Statistics PostDoc in Zurich
Torsten Hothorn · Jun 18, 2019 · r-sig-jobs

There is a PostDoc position open in my group at Univ of Zurich, Switzerland. Details are available from https://bit.ly/2KRCK6x Best, Torsten ________________________________________________________________ Prof. Dr. Torsten Hothorn ========= \\ Universitaet Zuerich \\ Institut fuer Epidemiologie, Biostatistik und \\ Praevention, Departement Biostatistik // Hirschengraben 84...

Hotellings T^2
Torsten Hothorn · Jun 14, 1999 · r-help

Sorry if this is a stupid question, but: Is there a routine in R which calculates the Hotellings-Lawley statistic? I searched aov, summary.mlm, CRAN etc. but could not find it. Torsten -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www...

[R-jobs] Professorship in Data Science
Torsten Hothorn · Jan 25, 2019 · r-sig-jobs

University of Zurich invites applications for a newly founded Professorship in Data Science The ad can be found here: http://www.jobs.uzh.ch/jobDetail.php?jobID=8728 Best, Torsten ________________________________________________________________ Prof. Dr. Torsten Hothorn ========= \\ Universitaet Zuerich \\ Institut fuer Epidemiologie, Biostatistik...

stratified Wilcoxon available?
Torsten Hothorn · Aug 29, 2005 · r-help

> Dear All, > > is there a stratified version of the Wilcoxon test (also known as van > Elteren test) available in R? you can plug it together using the `coin' infrastructure (see the examples in the manual and vignette). Torsten > Thanks, > > Heinz...

is.integer and rank
Torsten Hothorn · Oct 23, 2000 · r-devel

Hello, why does > test <- rank(sample(10)) > test [1] 4 8 9 10 2 1 7 6 3 5 > is.integer(test) [1] FALSE > is.double(test) [1] TRUE make sense in R-1.1.1? Torsten -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing...

r-sync down?
Torsten Hothorn · Dec 11, 2000 · r-devel

torsten@www:/raid/home/torsten > ping rsync.r-project.org PING franz.stat.wisc.edu (128.105.174.95): 56 data bytes --- franz.stat.wisc.edu ping statistics --- 12 packets transmitted, 0 packets received, 100% packet loss Torsten -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel...

Plot margins
Torsten Hothorn · Nov 23, 1999 · r-help

> > Try plot(..., xaxs="i", yaxs="i"), which works in R even if the help page > says otherwise. You will need an S book or the R Notes to explain this. Thanx a lot for all answers, this works fine! Torsten...

Regression trees with an ordinal response variable
Torsten Hothorn · Feb 3, 2007 · r-help

On Fri, 2 Feb 2007, Henric Nilsson (Public) wrote: > Torsten, consider the following: > >> ### ordinal regression >> mammoct <- ctree(ME ~ ., data = mammoexp) > Warning message: > no admissible split found >> ### estimated class probabilities >> treeresponse(mammoct, newdata = mammoexp[1:5, ]) > [[1]] > [1] 1.822115 > > [[2...

T-Distribution
Torsten Hothorn · Oct 3, 2002 · r-help

> > > > Try rt() function, type ?rt for help. > > That's _univariate_ t. Use the mvtnorm package for multivariate t > distribution. > hm, unless I as the maintainer miss something important: random number generation of the multivariate t is not in mvtnorm (yet...

how to calculate Spearman correlation with missing values
Torsten Hothorn · Sep 10, 2003 · r-help

On Wed, 10 Sep 2003 szhan at uoguelph.ca wrote: > Hello, there: > I got data matix with missing values. I want to calculate any possible > pairwise Spearman correlation rho for each column. Is there a function just > like cor(x...

F90 in packages
Torsten Hothorn · Jun 27, 2002 · r-devel

Hi, did anybody manage to compile F90 sources in an R-package? The major problem is, at least in my opinion, that non of the "free" F90 -> F77 converters is working correctly, at least for the F90 sources I need...

How to count the number of parameters in a function
Torsten Hothorn · Apr 9, 2003 · r-help

On Wed, 9 Apr 2003 arnaud_amsellem at ssga.com wrote: > I have the following function: > Myfunc <- function(var1,var2,.....,varN) > { ..... > } > In the above function I have a variable number of parameters (N>2). How can > I count how many...

Tendancy Chi test?
Torsten Hothorn · Nov 9, 2005 · r-help

On Wed, 9 Nov 2005, Julie Lejeune wrote: > Hello, > I would like to know what I do it to test correlation between ordered categorical variables. > Tendancy Chi test? a linear-by-linear association test is one possibilty, see `lbl_test...

OT: BibTex year-only citation in text?
Torsten Hothorn · Dec 10, 2003 · r-help

> > > Jason, > > > > For many bibliography styles, the command \citeyear{key} will work. If this > > doesn't work for the style you are using, you can investigate style-specific > > methods or consider other styles. I find that natbib is good for > > author...

tracing nonstandardGenericFunction
Torsten Hothorn · Aug 12, 2003 · r-devel

Hi, how can one trace a nonstandardGenericFunction, especially "initialize"? An example: setClass("dummy", representation(a = "numeric")) setMethod("initialize", "dummy", function(.Object, a = 2) { ### I want to trace this function .Object@a <- a .Object }) setMethod("show", "dummy", function(object) print(object...

function 'density' in r-devel
Torsten Hothorn · Sep 18, 2003 · r-devel

> Hi, > > Just to report. > > I yesterday's r-devel I get: > > d <- density(rnorm(100)) > Error in var(x, na.rm = na.rm) : 3 arguments passed to "cov" which requires 4. > you are the third one discovering this :-) cov.R...

small inconsistency in sort
Torsten Hothorn · Dec 3, 2002 · r-devel

Hi, if an atomic with colnames / rownames attribute is sorted, its names are not sorted in the appropriate way: R> a <- matrix(1:5, ncol=5) R> colnames(a) <- paste("V", 1:5, sep="") R> a V1 V2 V3 V4...

configure and f2c
Torsten Hothorn · Dec 11, 2000 · r-devel

In R-devel Dec 11 03:03, configure means (on SuSE 6.4): checking for f2c... f2c checking for f_open in -lf2c... no checking for d_sin in -lF77... no configure: warning: I found f2c but not libf2c, or...

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