search for: amodel

Displaying 6 results from an estimated 6 matches for "amodel".

Did you mean: model
2011 Jan 05
0
plot(aModel) vs. influence.measures()
A while back I asked about getting a list of points that R considers influential after fitting a linear model, and very quickly got a helpful pointer to influence.measures(). But "it has happened again." The trouble I am having is that points marked on plots are not flagged in the output from influence.measures(), and I can't read them on the plots. I tried some successive
2005 Oct 29
2
LaTex error when creating DVI version when compiling package
...selMod.lm} \alias{selMod.glm} \alias{selMod.list} \title{ Model selection according to information theoretic methods } \description{ Handles lm, glm and list of models lm, glm, lme and nlme objects and provides parameters to compare models according to Anderson et al. (1998) } \usage{ selMod(aModel, Order = "AICc", ...) group method selMod.lm(aModel, Order = "AICc", dropNull = FALSE, selconv=TRUE, ...) selMod.list(aModel, Order = "AICc", ...) } \arguments{ \item{aModel}{ a lm or glm model or a list of lm or glm models } \item{dropNull}{ if TRUE, dro...
2012 Jun 30
2
Significance of interaction depends on factor reference level - lmer/AIC model averaging
...el is the reference. Any help or advice would be appreciated, Andrew Robertson Below is the example code of what I am doing and an example of the model summary and model averaging results with location A as the ref level or location B. if A is the reference level... #full model Amodel<-lmer(d15N~(AGECAT2+Sex+Location1+AGECAT2:Location1+Sex:Location1+AGE CAT2:Sex+(1|Year)+(1|Location1/Socialgroup/Tattoo)), REML=FALSE, data=nocubs) #standardise model Amodels<-standardize(Amodel, standardize.y=FALSE) #dredge models summary(model.avg(get.models(Adredge,cumsum(weight)...
2002 Nov 05
1
graphics display problem
Hello all, I come arcoss a problem that has to do with graphics display in my machine (Redhat 7.35). This is what I did. I asked R to do multiple linear regression by: amodel<-lm(dat[,4]~dat[,1]+dat[,2]+dat[,3]) plot(amodel) and I got only one figure (residuals vs. the fitted; instead of several plots), and the following message: Error in abline (h=0, lty=3, col="gray"): Error: X11 cannot allocate additional graphics colors Consider using...
2010 Mar 26
2
file upload error(can't convert Tempfile into String)
....label.top.req #{t :upload_new}: =f.file_field :uploads, :style => "width:240px" .buttonbar = f.submit "#{t:save_contacts}", :onclick => "this.disabled = true" #{t :or} = link_to_cancel edit_list_path(@list) i created amodel contact list and nclude amethod as given below class Contactslist < ActiveRecord::Base def self.save(upload) name = upload[''uploads''] puts name directory = "public/avatars" # create the file path path = File.join(directory, name) # wri...
2008 May 09
5
dynamic models
Hi In my app , a user can create a set of question then a table is dynamily created , in the database,to store the answers of the questions. the name of the table is answers_x (x is the id of the questionniare). Is it possible to dynamicly create a model, to handle the answer_x tables ?? I can''t manually create a model then restart the server.