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.

132 results for “from:Lenth, Russell V”

lsmeans in glmmADMB
Lenth, Russell V · Jun 26, 2014 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20140626/bb3da97c/attachment.pl>

visualising interaction with predict.merMod
Lenth, Russell V · Jul 12, 2014 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20140712/ba6ff3d2/attachment.pl>

lmer and classical Expected Mean Squares
Lenth, Russell V · Sep 11, 2013 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20130912/edbcee06/attachment.pl>

Sum of squares discrepancy in lmer
Lenth, Russell V · Sep 18, 2013 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20130918/0122309d/attachment.pl>

Mixed-effects Model - LMER - Plot of estimated Mean and CI
Lenth, Russell V · Jul 23, 2014 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20140724/18f62544/attachment.pl>

Mixed-effects Model - LMER - Plot of estimated Mean and CI
Lenth, Russell V · Jul 23, 2014 · r-sig-mixed-models

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-mixed-models/attachments/20140724/19e2663f/attachment.pl>

lmer how to get predictions and confidence intervals
Lenth, Russell V · Jul 11, 2013 · r-sig-mixed-models

For predictions, you might take a look at the lsmeans package and see if it provides what you need. It's pretty simple to use when you want to predict on a rectangular grid. Russ Lenth

PR#9848
Lenth, Russell V · Aug 13, 2007 · r-devel

Oops -- I meant R version 2.5.1, not 1.5.1. My apologies. -- Russell V. Lenth, Professor Department of Statistics & Actuarial Science (319)335-0814 FAX (319)335-3017 The University of Iowa russell-lenth at uiowa.edu Iowa...

[R-pkg-devel] [External] Re: What is a "retired"package?
Lenth, Russell V · Sep 21, 2021 · r-package-devel

From: Andrew Simmons akwsimmo at gmail.com<mailto:akwsimmo at gmail.com> > Doesn't apply already work on any dimensional arrays using argument MARGIN? Egads, yes it does! I can't explain why I didn't know that... Russ [[alternative...

[R-pkg-devel] [External] Re: What is a "retired"package?
Lenth, Russell V · Sep 21, 2021 · r-package-devel

OK. Well, as Noah has pointed out, I can just use apply to do what I need, and get plyr out of the picture. But for the broader question, Jeff is saying that there really are 700 packages that are...

svd() results should have a class
Lenth, Russell V · Jun 23, 2022 · r-devel

Dear R-Devel, I noticed that if we run base::svd(x), we obtain an object of class "list". Shouldn't there be an "svd" class, in case someone (e.g., me) wants to write methods for singular value decompositions...

quiet namespace load is noisy
Lenth, Russell V · Jul 22, 2019 · r-devel

Dear R-devel, Consider the following clip (in R version 3.6.0, Windows): > requireNamespace("ggplot2", quietly = TRUE) Registered S3 methods overwritten by 'ggplot2': method from [.quosures rlang c.quosures rlang print.quosures rlang It seems to me that if...

Suggestions on how to correct a misapprehension?
Lenth, Russell V · Dec 13, 2022 · r-sig-mixed-models

Doug, With all respect, you are the one who knows exactly how you want to change the Wikipedia article, and I think you should be the one to repair it. You can't expect someone else to do it the...

[R-pkg-devel] [External] Re: Farming out methods to other packages
Lenth, Russell V · Aug 10, 2019 · r-package-devel

Hmmmm, I thought of an approach -- a kind of manual dispatch technique. My generic is recover_data <- function(object, ...) { rd <- try(getS3method("recover_data", class(object)[1], envir = .GlobalEnv, silent = TRUE)) if (!inherits(rd, "try-error")) rd(object, ...) else UseMethod...

It's hours I am trying to install emmeans
Lenth, Russell V · May 21, 2018 · r-sig-mixed-models

I made an unwise choice in version 1.2 of emmeans, by putting brms in Imports. That has the effect of expanding the dependencies in emmeans to over 100 other packages. I have rectified that in the latest github version...

[R-pkg-devel] [External] Re: Farming out methods to other packages
Lenth, Russell V · Aug 10, 2019 · r-package-devel

Thanks, Neonira. Always something new to learn! Russ From: neonira Arinoem <neonira at gmail.com> Sent: Saturday, August 10, 2019 2:22 PM To: Lenth, Russell V <russell-lenth at uiowa.edu> Cc: I?aki Ucar <iucar at fedoraproject.org...

geometric mean regression
Lenth, Russell V · Apr 2, 2018 · r-sig-mixed-models

The emmeans package handles this quite easily. You can do something like this: model <- lm(log(y) ~ treatment + ..., ...) # where treatment is a factor library(emmeans) emm <- emmeans(model, "treatment", type = "response") emm # shows the estimated geometric means contrast(emm, "pairwise...

R-sig-mixed-models Digest, Vol 82, Issue 25
Lenth, Russell V · Oct 16, 2013 · r-sig-mixed-models

If I understand this correctly, I think you can use the 'trend' argument in lsmeans to get what you want. See the man page for lsmeans and the examples near the end. Russ Lenth Sent from my iPad > On Oct...

It's hours I am trying to install emmeans
Lenth, Russell V · May 21, 2018 · r-sig-mixed-models

Emmeans 1.2.1 is now on its way to CRAN and it?s mirrors. It should be a lot easier to install. Russ > On May 21, 2018, at 8:47 AM, Lenth, Russell V <russell-lenth at uiowa.edu...

Question on mixed model design to analyze microarray data
Lenth, Russell V · Jul 1, 2013 · r-sig-mixed-models

The lsmeans package can do the comparisons with control for each gene using something like this: lsmeans(fitted.model, trt.vs.ctrl ~ trt | gene, ref = 1) ... assuming that the control is the 1st lvel of treatment. lsmeans does not do...

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