search for: merino

Displaying 20 results from an estimated 185 matches for "merino".

2019 Jul 22
1
[PATCH] MAINTAINERS: Update my email address
....mailmap | 1 + MAINTAINERS | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 0fef932de3db..8ce554b9c9f1 100644 --- a/.mailmap +++ b/.mailmap @@ -98,6 +98,7 @@ Jason Gunthorpe <jgg at ziepe.ca> <jgunthorpe at obsidianresearch.com> Javi Merino <javi.merino at kernel.org> <javi.merino at arm.com> <javier at osg.samsung.com> <javier.martinez at collabora.co.uk> Jean Tourrilhes <jt at hpl.hp.com> +<jean-philippe at linaro.org> <jean-philippe.brucker at arm.com> Jeff Garzik <jgarzik at pretzel....
2006 Nov 09
1
summary linear regression
...>>0.32 when the regression has an intercept and 0.7 when it is forced to >>cross the origin. >>To sum up, it may be stated that the theoretical methodolgy followed >>explains the 70% of of the observed variance? >> >>Thank you very much. >> >>Gorka Merino. Gorka Merino Institut de Ci?ncies del Mar, CMIMA-CSIC Psg. Mar?tim de la Barceloneta 37-49 08003-BARCELONA (Spain) Tel.: (34) 932 30 95 48 e-mail: gmerino at icm.csic.es CMIMA: Tel.: (34) 932 30 95 00 Fax: (34) 932 30 95 55
2013 Feb 26
15
Ayuda con dev.copy2pdf - Ejemplo reproducible
Buenos días: Sigo cabezudeando con el tema de los gráficos; a ver si a alguien se le ocurre alguna idea... Supongamos este código: library(plotrix) graphics.off() windows(width=8.27, height=11.69) plot(3:10) #plot(3:10, main="Axis break test") par(xpd=TRUE) text(4, 11,"Axis break test") axis.break() axis.break(2,2.9,style="zigzag") mtext("Texto
2012 May 27
2
[LLVMdev] Help with Values sign
Santos Merino <santitox at hotmail.es> writes: > When the ExecutionEngine finishs the JIT execution it says: > > Result: 16777216 There is nothing wrong with the IR code you initially posted. If you are obtaining that result, it must be caused by other factor. My guess is that you are messing...
2007 Feb 07
0
Detrended Fluctuation Analysis
Good afternoon, my name is Gorka Merino and i am a scientist working in the Marine Science Institune in Barcelone. I'm interested in the application of "Detrended Fluctuation Analysis" (DFA) with the R packages. I've tried to obtain some information related to DFA from the 'Help' options but failed. Could so...
2007 Mar 03
2
Help with HTB rules (experiencing latency)
...is where the burst and cburst (even quantum) parameters are useful, but I still can''t understand crearly how to set them (there are few examples using up rates of ~25kb/s), I hope you can check my rules and give me a hint on what to do. Soluciones en español también aceptadas. Edgar Merino _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2014 Nov 12
2
upsonic IRT1000 on ubuntu 14.04lts
...b and usbhid-ups) don't seem to recognize it or I've got the configuration parameters wrong. I've got no idea what driver it actually wants though there's an old thread that seems to have got it to work with snmp by adding an snmp card to it. Thanks for any info, Klint. root at merino:/tmp/aaa# uname -a Linux merino 3.13.0-39-generic #66-Ubuntu SMP Tue Oct 28 13:30:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux root at merino:/tmp/aaa# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=14.04 DISTRIB_CODENAME=trusty DISTRIB_DESCRIPTION="Ubuntu 14.04.1 LTS" root at meri...
2013 Jul 06
1
Duda trabajando con nombres de objetos que se reciben como parámetros
...[1]][1] "Ana"x <- 1:5AnaOnValidate <- function(x) print(x)if (exists(paste(l[ parametro][[1]], 'OnValidate', sep=''))) do.call(paste(l[ parametro][[1]], 'OnValidate', sep=''), list(x)) # cuidado con el enviroment nombreOnValidate[1] 1 2 3 4 Daniel Merino El 6 de julio de 2013 18:03, Eva Prieto Castro <evapcastro@yahoo.es>escribió: > Gracias, Daniel. > > El exists lo tengo claro, pero no puedo lanzar directamente > nombreOnValidate, sino hacerlo a partir de parametro, ¿comprendes?. Se > trata, en definitiva, de llamar a una...
2015 Jul 28
2
función cantidad mayor de valores
...g4 <- function(codigo_llega, n_caracteres){ codigo_llega <- as.character(codigo_llega) if(n_caracteres == 6) res <- substr(codigo_llega, start=0, stop=4) else res <- codigo_llega res } g4 <- Vectorize(g4) x <- c('Jorge Velez','Javier Marcuzzi','Daniel Merino','Susana deus Alvarez', 'Carlos Ortega') g4(x, 6) g4(x, 4) Saludos cordiales, Jorge.- 2015-07-28 13:08 GMT+10:00 <javier.ruben.marcuzzi en gmail.com>: > Señores > > > > Tengo un problema, donde use distintas alternativas y el informe de error > es el...
2007 Dec 26
1
sshd's -e doesn't work as expected
...DIN_FILENO); + open(_PATH_DEVNULL, O_RDONLY); + close(STDOUT_FILENO); + open(_PATH_DEVNULL, O_WRONLY); + if (!log_stderr) { + close(STDERR_FILENO); + open(_PATH_DEVNULL, O_WRONLY); + } /* Disconnect from the controlling tty. */ fd = open(_PATH_TTY, O_RDWR | O_NOCTTY); -- Julio M. Merino Vidal <jmmv at NetBSD.org>
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
...ot;if (exists(paste('nombre', 'OnValidate', sep=''))) nombreOnValidate(1:5) # cuidado con el enviroment nombreOnValidateif (exists(paste('s', 'um', sep=''))) sum(1:5) # esto lo agrego como ejemplo[1] 15l[ parametro]$nombre [1] "Ana" Daniel Merino El 6 de julio de 2013 17:40, Eva Prieto Castro <evapcastro@yahoo.es>escribió: > Hola de nuevo: > > En el apartado 1º, además de saber si existe la función, necesito llamarla. > > Eva > > > > > ________________________________ > > Para: R <r-help-es@r...
2014 Feb 11
2
eliminar texto de un fichero
No estoy seguro si esto sirve, ya que no enviaste un ejemplo reproducible. source("mifuncion.R", echo=TRUE, max.deparse.length=10000) Daniel Merino El 11 de febrero de 2014, 12:48, Carlos Ortega <cof@qualityexcellence.es>escribió: > Hola, > > Sí, pero recuerda que "write()" permite añadir otros nuevos objetos a un > fichero ya existente... > Vaya, que puedes utilizar varias funciones "write" utiliza...
2007 Sep 08
3
Coding in python using shout-python bindings
...urst-connect to 0 but got the same behaviour...) I hope I can get some help with this, and excuse my big explanation of the problem and poor way to do it, but english is not my native language and it's been a while since I had a real conversation in this language. Thanks in advance. Edgar Merino
2013 Dec 07
2
RV: pregunta
Estimados Tengo una serie de tiempo de casos semanales de una enfermedad ¿Cómo puedo llevar esos datos a la estructura de vector c(4,3,7 etc), he tratado con as. vector pero no la convierte saludos -- Este mensaje le ha llegado mediante el servicio de correo electronico que ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema Nacional de Salud. La persona que
2014 Oct 16
2
RCharts+Leaflet+Shiny
...> ejemplo que estás haciendo. Creo el problema es que tienes que convertir > data_ en un JSON array. Mira la siguiente respuesta de Ramnathv: > > https://github.com/ramnathv/rCharts/issues/114 > > donde usa > > toJSONArray(data_, json = F) > > Suerte, > > Daniel Merino > > El 15 de octubre de 2014, 16:18, Miguel Fiandor Gutiérrez < > miguel.fiandor.gutierrez en gmail.com> escribió: > >> Hola, >> >> Ando un poco desesperado con los mapas interactivos de Rcharts >> <https://github.com/ramnathv/rCharts>+Leaflet. >&g...
2005 Jul 06
8
HTB and bittorrent, won''t work
...s, ceil UPRATE ) { sfq; } ; } } } } Also, given the priorities it''s expected to let me surf the web or chat in msn messenger rather than take my whole bandwidth. I hope someone can help me out with this, maybe it not ok to use tcng with iptables? thank you in advance EDGAR MERINO
2013 Mar 07
3
ggplot2 y elipse.
Buenas tardes, Estoy intentando mejorar un gráfico que construyo pero de manera "bruta" y quiere encontrar una manera más eficiente. El gráfico en cuestión tiene más partes pero para simplificar la parte que me interesa es esta: [image: Imágenes integradas 5] Esto es una elipse de confianza de unos puntos, la elipse la consigo ayudándome de dataEllipse (paquete car), para llegar a
2012 Oct 04
7
Instalar dos versiones de R en linux
Hola a todos. Un problema dos pasos. Quiero desde RStudio trabajar con dos versiones de R (pongamos R2.13 y R2.15) desde Linux, Ubuntu 10.04 (lucid). Ya tengo instalada la R.2.15.1. Por defecto trabajo con ella. Pasos que creo he de dar: 1º. Instalar dos versiones de R en la misma maquina. ¿Como se hace?. Me estoy metiendo con el PATH y tal... hay algún protocolo clarito por ahí? 2º.
2014 Feb 11
2
eliminar texto de un fichero
....-.-.-.-.-.-.-.-.-.-.- >> >> >> >> 2014-02-11 14:16 GMT+00:00 daniel <daniel319@gmail.com>: >> >> > Luis, >> > >> > ?regex >> > >> > ?grep >> > >> > Espero te sirva. >> > >> > Daniel Merino >> > >> > >> > El 11 de febrero de 2014, 10:27, Luis Ridao <luridao@gmail.com> >> escribió: >> > >> >> r-help-es >> >> >> >> sabe alguien como eliminar texto de un fichero de texto utilizando R >> >> &gt...
2012 May 27
2
[LLVMdev] Help with Values sign
How are you checking the return value? I put your code in santos.ll and then executed it with lli, and I get 1 as a return value. lli santos.ll ; echo $? 1 Joey On 27 May 2012 16:59, Santos Merino <santitox at hotmail.es> wrote: > I show you the trace of calls to llvm that my compiler makes to generate > the > code above. bloques.back().last is of type Value* and bloques.back().bl is > BasicBlock* (the current Block) > > bloques.back().last = > > dyn_cast<Va...