similar to: GWRM package

Displaying 20 results from an estimated 1000 matches similar to: "GWRM package"

2011 Apr 13
1
Modelo para datos de conteos (Manuel Spínola)
Una distribución binomial negativa podría ser adecuada. De hecho, una extensión de la binomial negativa, como la distribución de Waring generalizada, termina convergiendo a una distribución binomial negativa. Puedes ver que la mejora en la bondad del ajuste de la binomial negativa con respecto a la Poisson es sustancial (te muestro también las salidas.). datos<-c(1280, 1262, 1290, 1321,
2013 Jul 08
1
Segmentar archivos en R (Antonio José Sáez Castillo)
Habría que buscar la vuelta, yo no lo se, pero posiblemente lo siguiente da una pista. Nota: al mismo código le sume una línea al final datos<-c(2,3,4,5,6,7,8) quantile(datos) quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)) as.matrix(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))) as.data.frame(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))) # ¿ y si solo solicita
2013 Jul 08
2
Segmentar archivos en R (Antonio José Sáez Castillo)
Estimado Mauricio Monsalvo Le paso una idea, no es un código muy lindo que digamos, pero al correrlo seguramente se dará cuenta de mi sugerencia. datos<-c(2,3,4,5,6,7,8) quantile(datos) quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)) as.matrix(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))) as.data.frame(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))) # ¿ y si solo
2013 Jul 08
0
Segmentar archivos en R (Antonio José Sáez Castillo)
Hola. Tengo un problema sencillo que no logro desentrañar: Tengo estos tres objetos: a <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, mean))) b <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, median))) c <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, quantile, probs = c(0.25, 0.75, 0.85, 0.90, 0.95)))) Pero resulta que cbind(a,b,c) devuelve este resultado:
2013 Jul 08
0
Segmentar archivos en R (Antonio José Sáez Castillo)
Gracias, Javier. Es lo que hice, en efecto, para salir del paso. Requerir de a uno por vez. El problema es que no entiendo por qué debo hacerlo así si quantile es una función más, como cualquier otra, que podría utilizar en un tapply (porque necesito los datos según provincia, que obviamente es un factor) El 8 de julio de 2013 17:25, Marcuzzi, Javier Rubén <
2011 Nov 22
13
Problema con la ayuda HTML
Hola: Desde hace varias versiones no puedo utilizar la ayuda HTML de R. Cuando, por ejemplo, lanzo ?nlm me abre el navegador con ERROR The requested URL could not be retrieved While trying to retrieve the URL: http://127.0.0.1:28683/library/stats/html/nlm.html The following error was encountered: Connection to 127.0.0.1 Failed The system returned: (111) Connection refused The remote host
2011 Nov 30
3
Segmentar archivos en R (Antonio José Sáez Castillo)
Hola Leonardo. Creo que te refieres a analizar alguna variable por grupos. Eso te lo pueden hacer las funciones tipo tapply(). Por ejemplo, tapply(datos,factor,mean, na.rm=TRUE) tapply(datos,factor,sd, na.rm=TRUE) tapply(datos,factor,quantile,probs=c(0.05,0.95),na.rm=TRUE) En cuanto a RCommander, que lo preguntabas después, algunas opciones del menú tienen la opción "Analizar por
2012 Apr 16
1
Crear nuevos métodos para funciones genéricas existentes
Perdón por anticipado ante una pregunta sólo achacable a mi ignorancia en programación. Estoy creando un nuevo paquete con una estructura "decente", en vez de las chapuzas que hacía hasta ahora. Defino una función que ajusta unos datos a una distribución que podemos llamar ND. La sintaxis de esta función sería, de forma resumida: ND.fit<-function(x, start, ...){ ...
2011 Nov 23
6
Incomplete final line (Antonio José Sáez)
Tengo el mismo problema que Eva en cualquier script que defina una función, pero no en otros que no definen funciones. Por ahora he tenido que desinstalar la versión 2.14.0. Os dejo un ejemplo (he simplificado la función, pero he dejado la estructura fundamental por si ahí está el error): si lanzáis source("probando.r") veréis que sale el mensaje de error. Por supuesto, garantizo que
2009 Apr 16
0
Problems with adabag
Hello, I'm trying to use adabag to make bagging and boosting with bagging() and adabost.M1(), respectively, but in both cases it produces an abnormal termination of R. My code is: bagging(I.NOSOCO~EDAD+SEXO+ESTANCIA+ADMISI?N+T.CIRUG?+DURACI?N+CONTAMIN +PROFILAX+E.PREOPE+V.PERIFE+V.CENTRA+S.VESICA+S.NASOGA+DREN.ABI+DREN.CER
2007 May 21
2
Source code of add1
Se ha borrado un texto insertado con un juego de caracteres sin especificar... Nombre: no disponible Url: https://stat.ethz.ch/pipermail/r-help/attachments/20070521/f7808713/attachment.pl
2012 Jun 01
5
Curso de R básico no presencial y gratuito
Hola, ¿qué tal? Juanjo Gibaja y yo hemos organizado un curso de R básico, no presencial, colaborativo y gratuito dirigido a aquellas personas que quieren introducirse en el mundo de R. Para más información, pueden consultarse los dos siguientes enlaces: http://www.datanalytics.com/blog/2012/06/01/curso-de-r-gratuito-no-presencial/
2014 Jan 10
1
Curso de R de Hastie y Tibshirani
Hola a todos, y especialmente a Olmo... porque yo estoy también en el fregado de Coursera, y me pregutaba si merecería la pena cambiar de curso, por así decirlo. ¿Alguna opinión por ahí al respecto? Un saludo JOrge Tornero El 10 de enero de 2014, 18:11, Olmo <ulmusnigra@yahoo.es> escribió: > Pues aquí uno que se ha apuntado, eso si, físicamente no creo que > pueda reunirme, no
2010 Sep 24
0
Inaccuracy of kummerU (fAsianOptions) (Tricomi function)
Hello, I need to use the confluent function of second kind, also known as Tricomi function. It is implemented as kummerU() function in fAsianOptions package, but I've found very inaccurate values, comparing with those provided by Mathematica. I think Mathematica values are OK because kummerU values leads to negative probabilities. For example, if you try the kummerU() function example, you
2007 Feb 13
1
RE2: Suddenly "Subscript out of bounds"
If you tell me how to update R itself automatically, I will go for your advice. I am not aware of any method to do it... Bye Rick "ONKELINX, Thierry"
2012 Nov 08
2
Fwd: Different behavior of net.ipv4.ip_local_port_range between RHEL-5 and RHEL-6
Forwarding just in case anyone is familiar with this on CentOS, thanks! -- Hello, Just found that net.ipv4.ip_local_port_range has different behavior between RHEL releases: until v6 although you have multiple source IPs you can only use a fixed number of local ports, seems that "ip_local_port_range" is a global configuration or limitation. On RHEL-6 kernel (testing with 2.6.32-279)
2008 Nov 06
1
Broken link in OpenVZ page in the Wiki
Dear Srs, In the page: http://wiki.centos.org/HowTos/Virtualization/OpenVZ Section -> "Additional Resources" "Performance evaluation of Xen vs. OpenVZ by HP Labs" link is broken, it points to: http://www.hpl.hp.com/techreports/2007/HPL-2007-59.pdf And the PDF has been moved to: http://www.hpl.hp.com/techreports/2007/HPL-2007-59R1.pdf Regards, -- Santi Saez
2008 Nov 25
1
Correct way to change I/O scheduler in a iSCSI dev
Hi, What's the correct way to change configuration parameters for an iSCSI device? For example I/O scheduler, max_sectors_kb, etc... I could add commands to the S99local script: echo noop > /sys/block/sdb/queue/scheduler echo 64 > /sys/block/sdb/queue/max_hw_sectors_kb Unfortunately, iSCSI device names might change from sdb to, say, sdc (server reboot, iSCSI target reconnection).
2009 Sep 28
2
rpmstrap/rpmbootstrap to boostrap CentOS 5
Hi, Is there any working script, similar to deboostrap, for CentOS 5? I have found rpmstrap [1] at RPMforge.. but only works for CentOS-4, and appears that's out of date. thanks! [1] http://dag.wieers.com/rpm/packages/rpmstrap/ -- Santi Saez http://woop.es
2008 Dec 04
2
Best way to take snapshots of iSCSI devices using Open-iSCSI + CentOS
Hi, I want to take snapshots of a iSCSI devices from a target that hasn't snapshot/cloning capabilities (it's a Infortrend A16E storage array). What method are you using to make snapshots/clones of iSCSI targets using Open-iSCSI + CentOS? What about using Open-iSCSI + LVM snapshots system? For example: - Take a LVM snapshot in the initiator with "lvcreate". - Give read-only