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.

1,364 results for “from:Achim Zeileis”

ctree
Achim Zeileis · Nov 14, 2012 · r-help

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

ivreg with fixed effect in R?
Achim Zeileis · Oct 19, 2013 · r-help

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

fortune update: 100th fortune
Achim Zeileis · Feb 2, 2005 · r-packages

Dear useRs, version 1.1-0 of the fortunes package is available from CRAN. It now contains 100 R fortunes. Thanks to all who contributed. Best wishes, Z

zeroinfl problem: cannot get standard errors, hessian has NaN
Achim Zeileis · Jul 25, 2012 · r-help

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

Variance-Covariance matrix from glm()
Achim Zeileis · Aug 4, 2006 · r-help

On Fri, 4 Aug 2006, Daniel Jeske wrote: > We are trying to find out how to get the variance-covariance matrix of the > MLEs out of the glm function. Can anyone help? It can be extracted with the corresponding vcov...

fortune update: 100th fortune
Achim Zeileis · Feb 2, 2005 · r-help

Dear useRs, version 1.1-0 of the fortunes package is available from CRAN. It now contains 100 R fortunes. Thanks to all who contributed. Best wishes, Z _______________________________________________ R-packages mailing list R-packages at stat.math.ethz.ch https...

skew and kurtosis
Achim Zeileis · May 12, 2003 · r-help

On Monday 12 May 2003 21:11, Ross Nelson wrote: > Is there a simple function that returns skew and kurtosis estimates > in R? skewness() and kurtosis() in e1071. Z > Ross > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https...

gregmisc
Achim Zeileis · Aug 7, 2003 · r-help

On Thursday 07 August 2003 20:46, atsuya fujito wrote: > Hi > > How do I install "gregmisc" packages? > I did- > % sudo R > > > install.packages("gregmisc") > > . > . > > > barplot2() > > but, > Error: couldn't find function "barplot2" I guess you forgot to say library(gregmisc...

lm() variance covariance matrix of coefficients.
Achim Zeileis · Jun 2, 2006 · r-help

On Fri, 2 Jun 2006 18:24:57 -0300 (ADT) Rolf Turner wrote: > summary(object)$cov.unscaled As the name suggests: this is the unscaled covariance matrix! Use the vcov() extractor method, i.e., vcov(object) which has methods not...

[R--gR] forthcoming R News article
Achim Zeileis · Oct 16, 2002 · r-sig-gr

Dear gR list, I added Steffen's article about the gR project which is forthcoming in the next R News 2(3) to the web site http://www.R-project.org/gR/ It contains some helpful information especially for those...

Can't there be a cd command?
Achim Zeileis · May 10, 2006 · r-help

On Wed, 10 May 2006 13:51:06 -0700 Berton Gunter wrote: > ...another fortunes package candidate? Hehe, yes, this time I was quicker ;-) > I especially liked the sections > beginning "R is a 4 wheel drive SUV...", but a lot of...

rollmax.zoo : column names NULL
Achim Zeileis · May 14, 2012 · r-help

Giles, thanks for the bug report: > I am comparing the output of rollmax in two versions of R. In the > current version, the column names are 'lost' ie NULL in the output; in > the earlier version they were retained. Yes...

[FORGED] Re: Rattle
Achim Zeileis · Jun 25, 2016 · r-help

On Sat, 25 Jun 2016, Rolf Turner wrote: > On 25/06/16 09:13, Jeff Newmiller wrote: >> This is like asking, "My car doesn't work. Can anyone tell me what is >> wrong?" > > <SNIP> > > Fortune nomination! On R-Forge now...

R: lags and plots
Achim Zeileis · Feb 3, 2004 · r-help

On Tue, 03 Feb 2004 13:57:53 +0200 allan clark wrote: > Hi all > > I want to calculate certain lags of a time series and plot them > simultaneously on a graph. can anyone help? Something like this? R> x <- ts...

Multiple comparisons with a glm
Achim Zeileis · Nov 5, 2003 · r-help

On Wednesday 05 November 2003 17:28, Ken Knoblauch wrote: > I've never seen anything written about multiple comparisons, > as in the multcomp package or with TukeyHSD, but using a glm. > Do such procedures exist? Are they sensible? > Are there...

[RsR] Newey West
Achim Zeileis · Jun 26, 2007 · r-sig-robust

On Tue, 26 Jun 2007, Nicolas Mougeot wrote: > Hi all, > > anyone knows how to compute OLS with Newey West estimators in R? Look at package "sandwich", in particular vignette("sandwich", package = "sandwich") Z > Rgds, > > Nicolas > > > --- > > This e-mail may contain...

Help with efficient double sum of max (X_i, Y_i) (X & Y vectors)
Achim Zeileis · Feb 1, 2007 · r-help

Jeff, you can do > sum1: \sum_i\sum_j max(X_i,X_j) > sum2: \sum_i\sum_j max(Y_i,Y_j) sum(x * (2 * rank(x) - 1)) > sum3: \sum_i\sum_j max(X_i,Y_j...

SARIMA with dynlm
Achim Zeileis · Jan 23, 2007 · r-help

Yannig: > Does anyone have an exemple of how to fit a SARIMA model , with a MA > part, with the package dynlm? This is not yet possible. Currently, dynlm() just offers the functionality of lm() for time series data, i.e...

[FORGED] Re: Help with Binning Data
Achim Zeileis · Sep 10, 2015 · r-help

On Fri, 11 Sep 2015, Rolf Turner wrote: > On 11/09/15 11:57, David Winsemius wrote: > > <SNIP> > >> The urge to imitate other statistical package that rely on profusion >> of dummies should be resisted. R repression functions can handle >> factor...

betareg 2.2-2: Beta regression
Achim Zeileis · Apr 6, 2010 · r-packages

Dear useRs, version 2.2-2 of the "betareg" package has just been released on CRAN http://CRAN.R-project.org/package=betareg accompanied by an article in the Journal of Statistical Software http://www.jstatsoft.org/v34/i02/ The...

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