similar to: usar un for para cambiar indice

Displaying 20 results from an estimated 2000 matches similar to: "usar un for para cambiar indice"

2014 Nov 05
3
Agregar ruido a una serie de tiempo
Bueno, realmente no es necesaria que la serie esté centrada en este caso, ya que estoy sumando un ruído blanco Un saludo From: fjroar en hotmail.com To: caaperezan en gmail.com; r-help-es en r-project.org Date: Wed, 5 Nov 2014 13:00:49 +0000 Subject: Re: [R-es] Agregar ruido a una serie de tiempo Hola buenos d?as: Yo cuando he tenido que hacer estos trabajos, lo que hac?a era coger la serie
2013 May 31
1
consulta
Hola Agustin Creo que esto te podría valer Tiempos<-rnorm(100) Caudales<-rnorm(100) qmed<-0 #Tiempos<-c(1,3,5) #Caudales<-c(-1,1,-1) zeros<-function(tiempo,valor,qmed){ orden<-order(tiempo) tiempo<-tiempo[orden] valor<-valor[orden] zeros<-c() for(i in 1:(length(tiempo)-1)){ if((valor[i]-qmed)*(valor[i+1]-qmed)<0){
2014 Nov 05
2
Agregar ruido a una serie de tiempo
Es posible agregar ruido a una serie de tiempo Tengo series de tiempo que tienen un comportamiento funcional, quisiera agregar ruido para que parezcan señales mas reales. Normalmente las series de tiempo se suavizan a traves de filtros, es posible hacer el proceso inverso con algun paquete de R Gracias por la atención CARLOS ANDRES PEREZ [[alternative HTML version deleted]]
2004 Aug 24
5
MMX/mmxext optimisations
quite some speed improvement indeed. attached the updated patch to apply to svn/trunk. j -------------- next part -------------- A non-text attachment was scrubbed... Name: theora-mmx.patch.gz Type: application/x-gzip Size: 8648 bytes Desc: not available Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20040824/5a5f2731/theora-mmx.patch-0001.bin
2008 Feb 15
2
Seeking to granules in discontinuous streams
On 15-Feb-08, at 6:44 AM, ogg.k.ogg.k@googlemail.com wrote: > Well, it doesn't quite work because the second part of the gpos is > an offset, > rather than absolute, and the precision we shed on one, we need to > recover > on the other one, to keep the ability to timestamp events at the > correct > granularity. It would have worked if the second part was absolute
2010 Apr 08
2
[LLVMdev] Check the location of the definition of a Value object
Hello, How to check whether a value object is within a particular basic block or not. I have the following LLVM bytecode: ------------------------ entry: ... %2 = call i32 (...)* @atoi(i8*%1) nounwind ... -- bb1: .. %5 = icmp sgt i32 %2, %i.0 ... ----------------- Here I got the corresponding pointer of the Value object of *%2*. How can I check whether it is defined in *entry* or
2013 Aug 19
0
pregunta
Estimados En el paquete EpiEstim hay varias series de tiempo como por ejemplo Flu2009 conformada por dos elementos : 1/ "Incidence": a vector containing 32 days of observation, $Incidence [1] 1 1 0 2 5 3 3 3 6 2 5 9 13 12 13 11 12 6 6 6 3 1 0 2 0 [26] 0 0 0 2 0 2 0 2/ "SI.Distr": a vector containing a set of 12 probabilities. $SI.Distr [1]
2016 Jan 26
2
Corregir mismo ID para individuos diferentes en una serie temporal
Hola, Antes de nada, muchas gracias por tu ayuda. El código se ha acercado bastante, pero no termina de funcionar porque considera cada captura de un individuo como años consecutivos aunque haya pasado más tiempo entre ellos. Por ejemplo el individuo 4 es capturado por primera vez el año 1 y por segunda vez el año 3, por lo que debería de ser renombrado ya que en este ejemplo en concreto
2016 Jan 26
2
Corregir mismo ID para individuos diferentes en una serie temporal
Hola, Please, mira si esta vez funciona: #---------------------------------------------- ID <- c(1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 1, 2, 6, 8, 12, 7, 15, 16, 17, 18, 19, 20, 1, 21, 22, 19 ) Year <- c (1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6) df <- data.frame (ID, Year) df ID <- c(1,
2002 Aug 05
3
Cross-Compiling VP3 lib on Linux
Hi, I have been working with VP3 for some time now. Dan Miller from On2 just told me about this list. A few months ago, I managed to get On2's VP3 source snapshot to compile under Linux, a feat that many have apparently attempted and quickly abandoned. I compiled a small console app and the results of the experiment are explained here:
2013 Jun 02
2
Conversión de objeto temporal (TS) a matriz (o data.frame)
Hola a todos: La pregunta ha quedado clara en el asunto, pero: ¿existe alguna función que convierta un objeto temporal (TS) a matriz o data.frame? En algunos cálculos que estoy haciendo me viene bien convertir un objeto temporal a matriz para poder hacer cálculos parciales por meses o años (aplicando apply en la matriz) pero no he encontrado ninguna función que haga la conversión. He
2006 Jul 24
2
[theora in hardware] Contents of YUV_BUFFER_ENTRY
Hi everyone, it's my first e-mail to this list (my classmates from college have sent a few though), so i'ld like first to greet everyone and congratulate all the people responsible for all the work with this theora project. So, to my question: As you probably know, we are working on an implementation of the theora codec on hardware. I'm currently responsible for getting the function
2016 Jan 24
2
test z de tres proporciones
El 24/01/16 a las 16:29, Fernando Sánchez Lasheras escribió: > Hola José, > > Efectivamente le mensaje me lo enviaste a mí, pero yo al contestar lo mandé > a la lista. > > Los grupos son tratamientos distintos. Es decir, se estudia a una serie de > personas a las que se les aplican tres tratamientos distintos (A, B y C) > durante el mismo tiempo y vemos el número de eventos
2010 Apr 08
0
[LLVMdev] Check the location of the definition of a Value object
Zheng Wang wrote: > Hello, > > How to check whether a value object is within a particular basic block or not. > There is a much simpler way to do this. Assuming that Value * pb holds the pointer to the value of %2, you do the following: 1) Check to see if %2 is an instruction (use dyn_cast<Instruction>(pb) and see if the result is NULL). If it's not an instruction,
2015 Dec 07
3
Tiempo de vida
Buenas, Como pudeo calcular el tiempo de vida? Os cuento, tengo una serie de cuchillas y quiero ver el consumo de las mismas y he pensado en hacer un estudio por tiempo de vida. No se como hacerlo con R Gracias Jesús [[alternative HTML version deleted]]
2016 Jan 25
4
Corregir mismo ID para individuos diferentes en una serie temporal
Hola a todos, Quería preguntar si alguno sabe como puedo identificar registros con un mismo ID en el tiempo, pero que hacer referencia a objetos o individuos diferentes. En mi caso en particular estoy estudiando un animal que tiene una vida media cercana 2 años, y tengo una serie longitudinal de 25 años. El problema es que durante el muestreo en algunos casos durante la recoleccion de los datos,
2012 Aug 01
3
Outliers en una serie de tiempo
Buenas noches.Soy principiante de R, necesito por favor detectar outliers en una serie de tiempo. Muchas gracias [[alternative HTML version deleted]]
2015 Dec 07
2
Tiempo de vida
Los datos no son de desgaste de cuchilla, sino de consumo de las mismas. Por ello tengo los datos de la siguiente forma: Unidades cambiadas Fecha En unidades cambiadas, suele ser una y en fecha el dia que se hizo el cmabio. Con eso no se muy bien como estructurar los datos para hacer el análisis. Gracias Jesús > Date: Mon, 7 Dec 2015 16:27:18 +0100 > From: griera en yandex.com
2018 Aug 30
2
Cambiar la escala del eje x
Estimados amigos Estoy dibujando las funciones acf y pacf de una variable de una serie "zoo": > ls.str(pat="T0.5") T0.5 : 'zoo' series from 2017-11-08 23:00:00 to 2017-11-15 06:59:00   Data: num [1:9120, 1:3] 55 49.8 51 50.1 36.5 ...   Index:  POSIXct[1:9120], format: "2017-11-08 23:00:00" "2017-11-08 23:01:00" "2017-11-08
2004 Aug 04
2
theora_decode_init bug
I found a bug in theora_decode_init when I was implementing the decoder. theora_decode_init should be zeroing the theora state structure right? memset(th, 0, sizeof(theora_state)); // Erik -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora-dev/attachments/20040805/26350ca4/attachment.htm