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.

21 results for “from:willow1980”

standard error for the estimated value (lmer fitted model)
willow1980 · Nov 18, 2009 · r-help

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

Why there is no p-value from likelihood ratio test using anova in GAM model fitting?
willow1980 · Apr 28, 2009 · r-help

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

How to control spaces between axis, tick and label in xyplot or xYplot?
willow1980 · Jan 11, 2010 · r-help

Thanks a lot for your help! I have tried Peter's code: it works perfectly. Hopefully, this method will also be helpful to others with similar problems. Best regards, Jianghua -- View this message in context: http://n4.nabble.com/How...

Do the missing values in random effect structure matter?
willow1980 · Mar 25, 2010 · r-help

Hi, everyone, I met a problem with mixed effect model with lmer. Basically, I want to treat region and mother ID as a nested random effect structure with mother ID nested within a specific region. However, in my dataset, many...

deviance from lmer model: deviance(model) and sum(resid(model)^2), which one is correct?
willow1980 · Nov 21, 2009 · r-help

Dear R users, I am frustrated by the residual sum of squares calculation. From Statistical Medhods by Snedecor & Cochran, I know sum(resid(model)^2) should be one method. However, there is a automatic code in R for this operation...

How to control number of significant digits (figures) in y-axis?
willow1980 · Jan 10, 2010 · r-help

Dear R users, I encounter a problem regarding number of significant digits on y-axis. Below is my basic code: myplotkid<-xyplot(expected_offspringnumber~afr|decade,groups=SES,data1, auto.key=list(space="right"),layout=c(9,1),xlab="",ylab...

How to control spaces between axis, tick and label in xyplot or xYplot?
willow1980 · Jan 10, 2010 · r-help

Dear R users, I encounter a problem regarding space control in xyplot. Basically, I want to control spaces between label, tick and axis. I remember there is a function called mgp in general plot. Is there a similar function for...

smoothing spline in package gam
willow1980 · May 6, 2009 · r-help

Sorry, I did not notice you were using GAM package. Most R users are using Simon Wood's MGCV package. I recommend you to use it. I have never used GAM package, so I cannot make further comments. Good luck...

smoothing spline in package gam
willow1980 · May 5, 2009 · r-help

Strangely, summary.gam(m1) should give you significance results of parametric terms such as ost, wst, park10, sch50, comm, build and suite. These results should be located above the summary results for smooth terms. Please using summary.gam(m1) to...

Calculating the percentage of explained deviance in lmer
willow1980 · Nov 21, 2009 · r-help

Hi, Fabio, I only have an idea on how to calculate deviance explained by the fixed effects. If you remove fixed effects and introduce one null model such as m2<-lmer(response-var ~ 1+(1|Site/Area/Transect),family="binomial...

Calculating the percentage of explained deviance in lmer
willow1980 · Nov 21, 2009 · r-help

Sorry for making a mistake! It should be, (m2 at deviance["wrss"]-m1 at deviance["wrss"])/m2 at deviance["wrss"] willow1980 wrote: > > Hi, Fabio, > I only have an idea on how to calculate deviance explained by the fixed > effects. If...

Why there is no p-value from likelihood ratio test using anova in GAM model fitting?
willow1980 · Apr 28, 2009 · r-help

Hi, Dieter, I did add (test="F") in my script, but it does not matter. The following is my whole script. ################################################################# modelsurs_fer13<-gam(sum_surv15~s(FLBS)+SES+s(byear)+s(FLBS,byear),family=quasipoisson) modelsurs_fer14<-gam(sum...

How to plot 3-D surface graph from lmer mixed models?
willow1980 · Aug 13, 2009 · r-help

Dear Professor Murdoch, That is exactly the difficulty for me. I don't know how to make a prediction with lmer using "expand.grid"; at the moment, I can use ?model at X%*%fixef(model)? to get predicted values for...

How to control number of significant digits (figures) in y-axis?
willow1980 · Jan 11, 2010 · r-help

Dear Peter, Many thanks! Your code works perfectly. I hope this method will also be helpful to other users with similar problems. Best regards, Jianghua Peter Ehlers wrote: > > Use the 'scales=' argument together with formatC: > > x <- 1:10 > y <- sample...

How to deal with multicollinearity in mixed models (with lmer)?
willow1980 · Aug 16, 2009 · r-help

Dear R users, I have a problem with multicollinearity in mixed models and I am using lmer in package lme4. From previous mailing list, I learn of a reply "http://www.mail-archive.com/r-help at stat.math.ethz...

How to plot 3-D surface graph from lmer mixed models?
willow1980 · Aug 13, 2009 · r-help

Dear R users, I have a problem in plotting 3 dimensional graph using mixed models. My model is sur_prop ~ afr_c+I(afr_c^2)+I(afr_c^3)+byear_c+I(byear_c^2)+I(byear_c^3...

Why there is no p-value from likelihood ratio test using anova in GAM model fitting?
willow1980 · Apr 28, 2009 · r-help

Hi, Simon, I am using mgcv:gam and the version number is mgcv_1.5-2. I also exchanged the order of two models in anova, but this also did not help. >From the differences in DF(0.77246) and...

A question about using “by” in GAM model fitting of interaction between smooth terms and factor
willow1980 · May 6, 2009 · r-help

Dear Simon, Thank you so much! Actually, it seems that Crawley's R book adopted the information from that earlier version and he discussed "by" in the context of that version. I will take a practice according to your suggestion...

A question about using “by” in GAM model fitting of interaction between smooth terms and factor
willow1980 · May 5, 2009 · r-help

I am a little bit confusing about the following help message on how to fit a GAM model with interaction between factor and smooth terms from http://rss.acs.unt.edu/Rdoc/library/mgcv/html/gam.models.html: ?Sometimes models...

How to calculate standard errors of predictions based on the fixed effects? lmer
willow1980 · Nov 23, 2009 · r-help

Dear R users, I have posted a similar message in the following link: http://old.nabble.com/standard-error-for-the-estimated-value-(lmer-fitted-model)-td26414507.html However, I did not get responses. I guess my question is not...

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