Displaying 20 results from an estimated 400 matches similar to: "Nested Models"
2011 Jun 07
1
variable selection in linear regression
Hello
With due respect, have a nice time. I would like to ask some command in R.
It is regarding variable selection in linear regression.
In R, there is one rebuild function called "step" which
selecting variables according to AIC.
let say i have data [y, x1,x2,x3,x4]
we start with y~b0
i compute the partial F test and choose the variable
with maximum partial F to enter the
2011 Nov 21
0
[PATCH] xsm/flask: fix resource list range checks
The FLASK security checks for resource ranges were not implemented
correctly - only the permissions on the endpoints of a range were
checked, instead of all items contained in the range. This would allow
certain resources (I/O ports, I/O memory) to be used by domains in
contravention to security policy.
This also corrects a bug where adding overlapping resource ranges did
not trigger an error.
2012 Dec 18
3
Regression line does not show on scatterplot
Hello,
I have done a scatterplot and now would like to add its regression line but it does not show.
Below, the code I have used.
lm3 <- lm(data$S_pH_KCl2.5_BCx~data$B_OleicoPF_BCx_per)
plot(data$S_pH_KCl2.5_BCx, data$B_OleicoPF_BCx_per)
abline(lm3)
I have been able to do the complete operation using the software STATISTICA but it would be great to do it with R.
If you require more details
2008 Jun 19
4
Problems with lm()
Dear R-users:
I am a new R-user and I have a question about lm
function. Here is my data.
a<-c(1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14)
b<-c(1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2)
c<-c(2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2)
d<-c(2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1)
2005 Jun 29
1
poly() in lm() leads to wrong coefficients (but correct residuals)
Dear all,
I am using poly() in lm() in the following form.
1> DelsDPWOS.lm3 <- lm(DelsPDWOS[,1] ~ poly(DelsPDWOS[,4],3))
2> DelsDPWOS.I.lm3 <- lm(DelsPDWOS[,1] ~ poly(I(DelsPDWOS[,4]),3))
3> DelsDPWOS.2.lm3 <-
lm(DelsPDWOS[,1]~DelsPDWOS[,4]+I(DelsPDWOS[,4]^2)+I(DelsPDWOS[,4]^3))
1 and 2 lead to identical but wrong results. 3 is correct. Surprisingly
(to me) the residuals
2008 Nov 24
3
Is this correct?
I have to answer the following question for a homework assignment.
A researcher was interested in whether people taking part in sports at
university made more money after graduating, taking into account the
students' GPA. They sampled 200 alumni from a large university. The
variables are: income (income 10 years after graduating), sports (1 if they
did sports, 0 if they did not), and GPA (the
2003 Nov 13
1
Problem with 3.7.1p2 on Reliant Unix
Hi Group,
recently I upgraded to v 3.7.1p2 on Reliant Unix (former SINIX). With sser root everything works fine, but with a "normal" user the session terminates.. I put the logfile of the "sshd -dddd" at the end. What is wrong?
regard
Stephan
---------------
debug2: read_server_config: filename /etc/sshd_config
debug1: sshd version OpenSSH_3.7.1p2
debug1: private host key:
2017 Nov 10
0
[Bug 1015] ip6tables-save and "-p all" or no specification of protocol.
https://bugzilla.netfilter.org/show_bug.cgi?id=1015
scott.nolin at ssec.wisc.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |scott.nolin at ssec.wisc.edu
--
You are receiving this mail because:
You are watching all bug changes.
-------------- next
2014 Jun 13
3
p values con LMER
Hola Manuel
lo he tratado de hacer pero me sale
Error: unexpected string constante in:
"anova(a,as,test=Chisq")
no tengo ni idea de por qué...
Me resulta alucinante no poder contar ya con pvals.fnc. ¿Será imposible hacerse con ello?
Saludos,
Miguel
--------------------------------------------
El vie, 13/6/14, Manuel Azcárate <mazcarategarcia en gmail.com> escribió:
2003 Jul 08
2
exporting help
i need step by step directions on how to export a text file into the r
file
2005 Aug 03
7
call fortran in R
Hello,
I used a mac G5, R.2.1.1, and G77 3.4.4 and I would like to use and
call a fortran subroutine.
The trouble is that it seems I am not able to correctly load the
compiled code.
Here is what I have done:
In the terminal this how I compiled my fortran code:
R CMD SHLIB ~/Desktop/Fortan_kmeans/kmeans3.f
There is the wrapper I have paste inside de kmeans3.f file:
c
2014 Jun 13
2
p values con LMER
Hola a todos,
quería preguntaros un medio para obtener los valores p usando lmer. He tratado con pvals.fnc, que es lo que me habían recomendado, pero por algún motivo no está ya disponible etc.
Ésta es la función que tengo, pero da las "t", sin los valores p. Aunque Baayen indica que valores por encima de 2 son significativos necesito saber las p.
resultado = lmer(rt_ln ~ (fre_ln *
2007 Nov 29
1
Anova(car) SS digits
Hi,
When I use Anova(car) to produce type III SS, 'Sum Sq' is reported in
integers:
> Anova(bot.lm3, type ="III")
Anova Table (Type III tests)
Response: bottemp
Sum Sq Df F value Pr(>F)
(Intercept) 45295 1 29436.4440 < 2e-16
fungroup 3 2 0.8259 0.44006
numsp.fun 11 2
2012 Jul 06
2
Anova Type II and Contrasts
the study design of the data I have to analyse is simple. There is 1 control group (CTRL) and 2 different treatment groups (TREAT_1 and TREAT_2).
The data also includes 2 covariates COV1 and COV2. I have been asked to check if there is a linear or quadratic treatment effect in the data.
I created a dummy data set to explain my situation:
df1 <- data.frame(
Observation =
2003 Oct 28
1
error message in simulation
Dear R-users,
I am a dentist (so forgive me if my question looks stupid) and came across
a problem when I did simulations to compare a few single level and two
level regressions.
The simulations were interrupted and an error message came out like 'Error
in MEestimate(lmeSt, grps) : Singularity in backsolve at level 0, block 1'.
My collegue suggested that this might be due to my codes
2014 Jun 13
3
p values con LMER
Existe discusión sobre el uso de los p-valores en modelos mixtos. Como se
ha dicho antes, para mi lo más adecuado es comparar modelos mediante la
función anova. Por Internet se puede encontrar un buen libro de Douglas
Bates y en español, busca modelos mixtos con R de Luis Cayuela, enfocado
hacia ecología, pero está muy bien
El 13/06/2014 14:00, "Jorge I Velez"
2007 Sep 05
3
'singular gradient matrix’ when using nls() and how to make the program skip nls( ) and run on
Dear friends.
I use nls() and encounter the following puzzling problem:
I have a function f(a,b,c,x), I have a data vector of x and a vectory y of
realized value of f.
Case1
I tried to estimate c with (a=0.3, b=0.5) fixed:
nls(y~f(a,b,c,x), control=list(maxiter = 100000, minFactor=0.5
^2048),start=list(c=0.5)).
The error message is: "number of iterations exceeded maximum of
2006 Sep 03
2
lm, weights and ...
> lm2 <- function(...) lm(...)
> lm2(mpg ~ wt, data=mtcars)
Call:
lm(formula = ..1, data = ..2)
Coefficients:
(Intercept) wt
37.285 -5.344
> lm2(mpg ~ wt, weights=cyl, data=mtcars)
Error in eval(expr, envir, enclos) : ..2 used in an incorrect context,
no ... to look in
Can anyone explain why this is happening? (Obviously this is a
manufactured example, but it
2012 Jan 13
2
Help needed in interpreting linear models
Dear members of the R-help list,
I have sent the email below to the R-SIG-ME list to ask for help in
interpreting some R output of fitted linear models.
Unfortunately, I haven't yet received any answers. As I am not sure if my
email was sent successfully to the mailing list I
am asking for help here:
Dear members of the R-SIG-ME list,
I am new to linear models and struggling with
2000 Jul 12
2
Removing Objects from workspace
Hi all,
how can I remove objects from the workspace which starts with a certain
pattern, e.g. lm (lm1, lm2, lm3 etc). Wildcards won?t work.
Thanks, Sven
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the