Displaying 20 results from an estimated 6000 matches similar to: "Backward logistic regression"
2009 Jul 29
3
Installing lme4 package in Windows Vista
Hi all,
I have a problem with package installing in Windows, on my PC machine. The
end goal is to be able to use the lme() function. Here's what I did so far:
> install.packages("lme4")
Warning in install.packages("lme4") :
argument 'lib' is missing: using
'C:\Users\Angela\Documents/R/win-library/2.9'
--- Please select a CRAN mirror for use in this
2009 Jul 30
1
lmer() and "$ operator is invalid for atomic vectors"
Hi all,
I am a bit mystified by this error message that I get when I try to apply
lmer() to a simple dataset with one between factor (age) and one within
factor (item): "$ operator is invalid for atomic vectors"
I'll just provide the code, because I don't see where the problem is:
library(lme4)
options(contrasts=c("contr.helmert","contr.poly"))
data =
2009 Feb 21
1
variable/model selction (step/stepAIC) for biglm ?
Hello dear R mailing list members.
I have recently became curious of the possibility applying model
selection algorithms (even as simple as AIC) to regressions of large
datasets. I searched as best as I could, but couldn't find any
reference or wrapper for using step or stepAIC to packages such as
biglm.
Any ideas or directions of how to implement such a concept ?
Best,
Tal
--
2011 Mar 23
2
información sobre símbolos
Buenos días a todos,
Una pregunta muy sencilla, podrían por favor informarme dónde puedo conocer
el significado de símbolos como $, %, == que se utilizan frecuentemente en
R?
Gracias,
Angela C.
----
*Angela Andrea Camargo Sanabria*
Estudiante Doctorado en Ciencias Biológicas
Laboratorio de Ecología de poblaciones y comunidades tropicales
Centro de Investigaciones en Ecosistemas (CIEco)
UNAM,
2013 Feb 28
2
Ayuda con función tapply
Hola Compañeros,
Estoy tratando de "contar" utilizando la función tapply y length y obtengo
un error que no entiendo. Agradecería su ayuda.
Las líneas son las siguientes:
UNO <- subset (datos, CRIH2008 == "VERDADERO")
dim (UNO)
Abund2008 <- tapply (UNO$Cons, list(UNO$Site, UNO$Trat), length, na.rm=T)
Y obtengo este error:
Error en FUN(X[[1L]], ...) :
2 arguments
2012 Jun 06
2
pregunta sobre libro de Legendre
Hola a todos,
Por casualidad alguno que tenga el libro de Legendre de Numerical Ecology
with R sabe dónde o cómo bajar los data sets que se mencionan para seguir
los ejemplos?
Muchas gracias por su ayuda!
----
*Angela Andrea Camargo Sanabria*
Estudiante Doctorado en Ciencias Biológicas
Laboratorio de Ecología de poblaciones y comunidades tropicales
Centro de Investigaciones en Ecosistemas
2016 Sep 07
3
tips para curso introductorio de R
Gracias chicos por sus opiniones y recomendaciones.
Como dice Javier Rubén, justo lo que quiero es que los chicos aprendan bien
los fundamentos de un lenguaje de programación orientado a objetos para que
no solo copien el script de una librería, corran y ya. Quisiera que
comprendieran los beneficios de R en términos de manipulación de sus bases
de datos y optimización de procesos a través de los
2013 Feb 11
2
Alguien ha usado R para calcular curvas de rarefacción de especies en análisis de diversidad?
Quisiera intercambiar ideas con aquellos que lo hayan utilizado.
Muchas gracias y bonito día!
----
*Angela Andrea Camargo Sanabria*
Estudiante Doctorado en Ciencias Biológicas
Laboratorio de Ecología de poblaciones y comunidades tropicales
Centro de Investigaciones en Ecosistemas (CIEco)
UNAM, campus Morelia
Antigua Carretera a Pátzcuaro # 8701
Col. Ex-Hacienda de San José de la Huerta, CP 58190
2011 Jan 24
2
Implementing step-wise linear regression
Dear R fans,
I am trying to do step-wise linear regression using the F-test to decide
which variables to admit. Ewout Steyerberg suggests using the F-test for
this purpose.
I first build a model using no variables using lm(y ~ 1) and then using one
variable that is a strong predictor using lm(y ~ x). When I call var.test
on these two models, I do not get a significant p-value—0.07. But a
2014 Aug 25
5
problema con campos que tienen formato fecha
Hola Javier,
Muchas gracias por responder tan rápido!
Yo trabajo en Mac OS X 10.9.4.
Versión 0.98.953 de RStudio.
Versión 3.0.2 (2013-09-25) de R.
##
Este es el script que estoy trabajando. Se trata de una rutina para
automatizar el cálculo de la duración del evento.
setwd("/Users/angelacamargosanabria/Documents/ANGELITA/1-DOC/1-TESIS/4-PAPERS/1-Mamiferos/DATOS/Bases")
BASE <-
2012 Dec 14
2
una programación sencilla
Hola a todos,
Escribo para preguntarles sobre cómo programar algo, que estoy segura es
algo bastante sencillo para muchos de Uds que tienen amplia experiencia
programando. Lo describo a continuación.
Tengo una base de datos (file = datos) de especies (de plantas) en donde
cada fila es un individuo de una especie con ciertos atributos (alrededor
de 1500 filas = individuos). Quería anexar en esta
2010 Aug 31
1
wavelet parameters with sowas
Hello everybody.
My name is Angela.
I'm doing wavelet using the sowas library. The problem I have is that I
don't know how to choose the paremeters to describes differnt wavelet
analysis. How I select the noctave, nvoice, w0, s0,...?
I hope my question is clear enough.
Thank you very much beforehand.
Angela
--
View this message in context:
2014 Aug 25
2
problema con campos que tienen formato fecha
Hola a todos,
Tengo la siguiente inquietud, espero me puedan ayudar.
Tengo una base de datos de la que estoy haciendo varios cálculos. Uno de
ellos es la diferencia entre tiempos para conocer la duración de un evento.
Aquí usé el paquete lubridate para tener fecha y hora en el formato
adecuado. Cuando hago el calculo obtengo algo como esto:
> (BASE$Time2[518]-BASE$Time2[516])
Time difference
2009 May 05
2
Stepwise logistic Regression with significance testing - stepAIC
Hello R-Users,
I have one binary dependent variable and a set of independent variables (glm(formula,…,family=”binomial”) ) and I am using the function stepAIC (“MASS”) for choosing an optimal model. However I am not sure if stepAIC considers significance properties like Likelihood ratio test and Wald test (see example below).
> y <- rbinom(30,1,0.4)
> x1 <- rnorm(30)
> x2
2011 May 17
3
Powercom issues in NUT (was: PowerCom BNT2000AT ups on nut 2.6.0 - second try)
Dino, Alexey,
there are a number of users suffering issues with your Powercom devices.
Could you (Dino, and Keven if possible) please have a look at the below one,
from Angela, and check for a fix?
I've scheduled to release 2.6.1 next week, and having that fixed is part of
the list.
2011/5/16 Angela Williams <angierfw at gmail.com>
> Hi All
>
> On Friday 13 May 2011 at
2005 Jan 26
2
networks in R
Good afternoon,
do you know if R provides a special package to make networks ?
Thank you,
Angela
2004 Nov 17
2
(no subject)
Good evening,
I'm going to use R to calculate the P-value for Pearson coefficient.
Does it exist an already defined function?How can I do?Thanks for
helping me.
Angela
2004 Dec 22
2
MASS installation
Good evening,
I need to fit experimental distributions by theoretical ones. I know
that it is possible in the package MASS but I don't know how to install
it. Can you help me?
Thank you, Angela
2007 Sep 17
1
Stepwise logistic model selection using Cp and BIC criteria
Hi,
Is there any package for logistic model selection using BIC and Mallow's Cp
statistic? If not, then kindly suggest me some ways to deal with these
problems.
Thanks.
--
View this message in context: http://www.nabble.com/Stepwise-logistic-model-selection-using-Cp-and-BIC-criteria-tf4464430.html#a12729613
Sent from the R help mailing list archive at Nabble.com.
2004 Dec 22
2
how to fit in R
Good morning,
in my work I need to study data distributions and so I need to fit the
experimental distribution by theoretical curves such as normal, Poison,
binomial and so on. I'd like to know, given a vector of data, for example
x<-rnorm (1000, 10)
if they follow a normal distribution. I'd like to do a fit (to estimate
the parameters of the theoretical distribution) and then a