search for: l120

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

Did you mean: 120
2016 May 30
3
Codigo
...riables con los betas del glm y otras vueltas. Necesitaría una sentencia que tome cada lote haga los cálculos por separado y luego los une en el dataframe de salida El 30 de mayo de 2016, 10:02, Olivier Nuñez <onunez en unex.es> escribió: > Mira lapply .... > > Si L= list(L1,L2,...,L120) es una lista de tus lotes > > ajuste <- function(L) glm(y~x,data=L) > fit=lapply(L1,ajuste) > > donde "fit" es la lista de 120 ajustes. > > Un saludo. Olivier > > ----- Mensaje original ----- > De: "Andres Hirigoyen" <andreshirigoyen en gmail...
2016 May 30
3
Codigo
Buenos días tengo una consulta sobre un código rutinario que quiero ejecutar. Tengo 120 Lotes con un ID diferente (del C001 al C120) a cada uno de los cuales debo efectuares un GLM y con los parámetros obtenidos calcular otras variables para luego hacer gráficas, razón por la cual no puedo procesarlos todos juntos. Intente hacer una sentencia repeat() o con for() para que me ejecute de forma
2016 May 30
3
Codigo
...el código de Oliver utilizando la librería "broom" que > permite obtener los parámetros (coeficientes) y características del modelo > (null.deviance, AIC, BIC) en un cómodo data.frame > > El código sería algo así como esto. > > library(broom) > L <- list(L1, L2..., L120) > > ajuste <- function(L) { > g <- glm(y ~., data = L) > g_df <- tidy(g) #tidy es una función del paquete "broom" que > devuelve los coeficientes y sus errores. > return(g_df) > } > > fit <- apply(L, ajuste) > > > Salud...
2014 Mar 20
0
possible bug: graphics::image seems to ignore getOption("preferRaster")
...https://www.mail-archive.com/r-devel at r-project.org/msg22811.html suggests that Simon Urbanek may have added the useRaster option and looking at git blame on this mirror repo: https://github.com/wch/r-source/blame/c3ba5b0be36d3a1290e18fe189142c88f1e43236/src/library/graphics/R/image.R#L111-L120 suggests that Brian Ripley's svn commit 56949 was the last to touch these lines: https://github.com/wch/r-source/commit/b9012424f895bf681daf1b85255942547d495bcd Thanks for any pointers if I am missing something! Best wishes, Greg Jefferis. > R.version _ platform...
2013 May 28
3
Issue with Puppet & Packages which are installed multiple times
Hi, hopefully this hasn''t been discussed too often, haven''t found anything in the group: I''m having some issues when a package gets installed twice ( x86 & x64 version). #system is a RHEL5/x64 system. *#following manifest:* [root@kermit ~]# cat install_expect.pp package { ''expect'': ensure => present, } *#ok, let''s apply*
2013 Jun 12
26
Interesting observation with network event notification and batching
Hi all I''m hacking on a netback trying to identify whether TLB flushes causes heavy performance penalty on Tx path. The hack is quite nasty (you would not want to know, trust me). Basically what is doesn''t is, 1) alter network protocol to pass along mfns instead of grant references, 2) when the backend sees a new mfn, map it RO and cache it in its own address space. With this