similar to: ANOVA between linear models.

Displaying 20 results from an estimated 1500 matches similar to: "ANOVA between linear models."

2008 Jun 27
2
plot(type="l") disjoint between 100 and 101st datapoint
Dear All: We have been experiencing networking issues so I don't know if this got through; I can't see it in the archive. My sincere apologies if this appears twice. I may have found an unusual bug and am posting here to see if anyone can reproduce it on their system. First of all, sessionInfo(): > sessionInfo() R version 2.7.1 (2008-06-23) i386-apple-darwin8.10.1 locale:
2014 Dec 09
3
Optimizar paste0()?
Gracias, Javier. Los datos "d" corresponden un archivo de texto de ~1.92GB. Voy a explorar la posibilidad con sqldf, aunque confieso que mi conocimiento de SQL es bastante limitado. Saludos cordiales, Jorge.- 2014-12-09 23:50 GMT+11:00 "Marcuzzi, Javier Rubén" < javier.ruben.marcuzzi en gmail.com>: > Estimado Jorge Velez > > ¿Que pasa si usa sqldf que
2006 Jan 13
1
MINNESOTA: TwinCities Asterisk Users Group - Saturday 01/14/2006
Hello, The next Asterisk Users Group meeting has been scheduled for tomorrow, January 14th at 11:30am. Its a new year and it's been two months since our last meeting. Meetings are held monthly on the second Saturday of each month, excluding July and December. Sound Choice Communcations is located in Bloomington Minnesota, just 1/2 mile west of the Mall of America. The address is: 7839
2012 Mar 26
2
[OT] Ley de transparencia en España y acceso a bases de datos públicas
Hola, ¿qué tal? Pido excusas primero a aquellos a quienes el tema le resulte geográfica y materialmente ajeno. Estos días se ha hablado de la nueva Ley de Transparencia española que tiene que ver con la obligación de las administraciones públicas de ceder sus datos a los ciudadanos. En los medios de comunicación se ha enfocado desde un punto de vista del control de la gestión de los políticos.
2014 Dec 17
2
optimización - resolver sistema - general
Estimados Reailizo una pregunta general, casi desconociendo. Se me ocurrió explorar lo siguiente: hay ejemplos de programación lineal o utilizando la herramienta solver de excel, donde se realizan algunos cálculos, lo más sencillo de comprender y documentado (todos lados) es una cantidad de productos, un costo de compra, un costo de venta, una cantidad para invertir y ¿cuánto me conviene
2014 Dec 09
3
Optimizar paste0()?
Hola, Otra forma, quizás algo más rápida, especialmente para unos conjuntos tan grandes, que la de sqldf es "data.table": library(data.table) x <- 1:3 y <- 4:6 d <- data.table(x, y) d[,z := paste(x,"-",y,sep="")] > d x y z 1: 1 4 1-4 2: 2 5 2-5 3: 3 6 3-6 Y bueno, "dplyr" también es otra opción muy rápida... También, y recuerdo que hace
2010 May 08
5
contar casos en un vector
Buenas noches, tengo dos vectores con nombres. El primero es largo, nombreL, y el segundo corto, nombreC. Quiero contar cuantas veces aparece alguno de los nombres del vector corto en el largo. Lo que estoy haciendo es lo siguiente: cuenta <- 0 topL <- length(nombreL) topC <- length(nombreC) for (i in 1:topL) { for (j in 1:topC) {
2012 Sep 24
2
De una grafica hallar el valor en un punto
Acudo a su conocimiento apara obtener ayuda Se tiene un gráfico como el que les adjunto, es un gráfico de un instrumento meteorológico el cual registra información de un día, se quiere hallar el valor en el corte de la gráfica y la vertical Horaria (8 , 9, 10, ...) el cual se registra como valor de la obserbacion, despues debo realizar analisis estadistico. Gracias Luis Augusto López Gómez
2005 Mar 03
1
total variation penalty
Hi, I was recently plowing through the docs of the quantreg package by Roger Koenker and came across the total variation penalty approach to 1-dimensional spline fitting. I googled around a bit and have found some papers originated in the image processing community, but (apart from Roger's papers) no paper that would discuss its statistical aspects. I have a couple of questions in this
2014 Dec 17
2
optimización - resolver sistema - general
Hola a todos, Simplemente comentar que me tengo encontrado con muchos problemas de optimización. Mi recomendación general, en el caso multidimensional y si el tiempo de computación es importante, sería buscar un algoritmo diseñado para el tipo de problema (evitar los algoritmos más generales tipo optim si puede haber problemas de mínimos locales). Algunos casos que tengo resuelto con R
2012 Feb 21
2
bootstrap in time dependent Cox model‏
Dear R-list, I am wondering how to perform a bootstrap in R for the weighted time dependent Cox model? (Andersen?Gill format, with multiple observations from each patients) to obtain the bootstrap standard error of the treatment effect. Below is an example dataset. Would 'censboot' be appropriate to use in this context? Any suggestions/references/direction to R-package will be highly
2009 Mar 06
2
Re peated ANOVA or nested ANOVA, or parallel one way ANOVA six times?
Hi, every body! I am a new comer for R, so my question would unavoidablely sounds stupid. Sorry! In my experiment, there are two type of soil ( soil F and soil D), each half of them were subjected to steam sterilize (result in FS and DS soil). A equal volume of soil from two of the four soil types (F, D, FS, DS) were mixed as follows: F+F, F+D, F+FS, F+DS, D+F, D+FS, D+DS, FS+DS (eight
2012 Aug 20
1
The difference between chisq.test binom.test and pbinom
Hello all, I am trying to understand the different results I am getting from the following 3 commands: chisq.test(c(62,50), p = c(0.512,1-0.512), correct = F) # p-value = 0.3788 binom.test(x=62,n=112, p= 0.512) # p-value = 0.3961 2*(1-pbinom(62,112, .512)) # p-value = 0.329 Well, the binom.test was supposed to be "exact" and give the same results as the pbinom, while the chisq.test
2006 Aug 12
0
anova.mlm for single model (one-way repeated measured anova)
On Sat, 12 Aug 2006, takahashi kohske wrote: > Dear list members: > > I'd like to one-way repeated measured anova by using mlm. > I'm using R-2.3.1 and my code is: > > dat<-matrix( c(9,7,8,8,12,11,8,13, 6,5,6,3,6,7,10,9, > 10,13,8,13,12,14,14,16, 9,11,13,14,16,12,15,14), > ncol=4, dimname=list(s=1:8, c=1:4)) >
2011 Jan 07
2
anova vs aov commands for anova with repeated measures
Dear all, I need to understand a thing in the beheaviour of the two functions aov and anova in the following case involving an analysis of ANOVA with repeated measures: If I use the folowing command I don´t get any problem: >aov1 = aov(response ~ stimulus*condition + Error(subject/(stimulus*condition)), >data=scrd) > summary(aov1) Instead if I try to fit the same model for the
2005 Sep 08
0
MINNESOTA: TwinCities Asterisk Users Group - Saturday 9/10/2005
Good Evening, The next Asterisk Users Group meeting has been scheduled for September 10th at 11:30am, this comming Saturday. Meetings are held monthly on the second Saturday of each month, excluding July and December. !! NEW ADDRESS !! Sound Choice Communcations has moved to Bloomington Minnesota, just 1/2 mile west of the Mall of America. The New address is: 7839 12th Ave S, Bloomington
2005 Oct 07
0
MINNESOTA: TwinCities Asterisk Users Group - Saturday 10/8/2005
Good Afternoon, The next Asterisk Users Group meeting has been scheduled for tomorrow, October 8th at 11:30am. Meetings are held monthly on the second Saturday of each month, excluding July and December. !! NEW ADDRESS !! Sound Choice Communcations has moved to Bloomington Minnesota, just 1/2 mile west of the Mall of America. The New address is: 7839 12th Ave S, Bloomington Minnesota
2009 Aug 28
1
How to generate mean anova value row in anova table, instead of individual value for each predictor
Hi All , Can anybody tell me if there's any way to get the summarized anova values.Now i will explain what i mean , when i say "*summarized*". Below you can see the anova table of recmeanC1 with rest* all* i.e from recmeanC2 to i15(predictors),as shown in table. Df Sum Squares Mean Square F value Significance [Pr(>F)] recmeanC2 1 89.272 89.272
2019 Feb 16
4
Duda error sintaxis
Buenas tardes chicos, estoy intentando hacer un gráfico que resuma para cada dia de la semana la información de algunos distritos específicos de los que contiene mi variable, ejecuto esta sintaxis pero me da un error Error: Mapping should be created with `aes() or `aes_()`. Alguien me puede orientar sobre que estoy haciendo mal, llevo mucho rato atascada. Muchas gracias df_nuevofinal %>%
2006 Apr 07
0
MINNESOTA: TwinCities Asterisk Users Group - Saturday 04/08/2006
SPONSORED THIS MONTH BY: SOUND CHOICE COMMUNICATIONS LLC "Keep in touch with the World" Hello, The next Asterisk Users Group meeting has been scheduled for this Saturday March 11th at 11:30am. Meetings are held monthly on the second Saturday of each month, excluding July and December. The Agenda is posted online