search for: semanal

Displaying 18 results from an estimated 18 matches for "semanal".

Did you mean: semana
2018 Oct 22
2
Agregar variable entre dos fechas
Buenas, Tengo un dataframe con 64.000 observaciones llamado Datos y las variables "Id.Producto","Fecha"y "Rating" . La variable fecha tiene el formato: 2016-12-28 (ymd). Quiero crear la variable: "Rating.Semanal" - Esta variable tiene que ser la media agregada por "Id.Producto" de la variable "Rating", solo teniendo en cuenta aquellas observaciones que estén entre el "2016-12-21" y "2016-12-28". Muchas gracias Miriam
2018 Oct 22
3
Agregar variable entre dos fechas
...fechas > Para: r-help-es > > > Buenas, Tengo un dataframe con 64.000 observaciones llamado Datos y > las variables "Id.Producto","Fecha"y "Rating" . La variable fecha > tiene el formato: 2016-12-28 (ymd). Quiero crear la variable: > "Rating.Semanal" - Esta variable tiene que ser la media agregada por > "Id.Producto" de la variable "Rating", solo teniendo en cuenta > aquellas observaciones que est?n entre el "2016-12-21" y "2016-12-28". > Muchas gracias Miriam ___________________________...
2006 Dec 15
1
series de tiempo diarias
Existe algún paquete en donde puedo modelizar específicamente series diarias univariadas siguiendo la metodología de Box-Jenkins? Cómo modelizar mas de una estacionalidad en dichas series por ejemplo una estacionalidad semanal y anual? GRacias Santiago Cilintano [[alternative HTML version deleted]]
2012 May 04
1
Medidas Repetidas
Hola a todos, Estoy intentando realizar un análisis de medidas repetidas en R y me gustaría pediros opinión porque estoy un poco atascada. Estoy utilizando las funciones lme y lmer. Tengo datos de censos de grillos (efi) realizados semanalmente (week) en tres parcelas (plot) diferentes, cada una de las cuales tiene seis transectos (transect) donde se realizan dichos censos. Los datos son de dos años consecutivos (year) mi modelo sería, en principio, algo así: lmer.efi<-lmer(mean_efi_week ~plot*year+(1|transect),data = efi_sem, me...
2015 Dec 10
3
Allowing virtual registers after register allocation
To say this first: This whole discussion about using virtregs until emit or having growable physregs is hard to argue without actually having experience trying to go either way. Problems when using virtregs throughout the backend until emit time: - The MC layer is using MCPhysReg (which is an uint16_t) and would need retrofitting to support virtregs - VirtRegs are assumed to have a definition,
2023 Jul 06
1
Libnbd asynchronous API with epoll
On Wed, Jul 5, 2023 at 3:38?PM Tage Johansson <tage.j.lists at posteo.net> wrote: > As part of the Rust bindings for Libnbd, I try to integrate the > asynchronous (aio_*) functions with Tokio > <https://docs.rs/tokio/latest/tokio/>, the most used asynchronous runtime > in Rust. However, in its eventloop, Tokio uses epoll(7) instead of poll(2) > (which is used internally
2023 Jul 05
1
Libnbd asynchronous API with epoll
Hello, As part of the Rust bindings for Libnbd, I try to integrate the asynchronous (aio_*) functions with Tokio <https://docs.rs/tokio/latest/tokio/>, the most used asynchronous runtime in Rust. However, in its eventloop, Tokio uses epoll(7) instead of poll(2) (which is used internally in Libnbd). The difference is that poll(2) uses level-triggered notifications as aposed to epoll(7)
2011 Oct 13
0
1) A memory leak in drivers/rhino.c 2) Wunused-but-set-variable.patch
I would like to have your comments regarding: 1) drivers/rhino.c ------------------ The following patch addresses some problems in drivers/rhino.c. Or that is what I think. I don't use this hardware. The patch: 1. Eliminates some usefulness definitions. 2. It removes code that evaluate the time. I can't see how the code actually does useful work. 3. The
2016 Jan 13
2
Allowing virtual registers after register allocation
We had some additional discussion on this. There is a lot of concern generally about post-RA passes which do not expect to have to handle virtual registers; specifically if they unexpectedly start seeing virtual registers, or if they work today but start making assumptions in the future. We discussed considering a mechanism that would require MachineFunctionPasses to "opt-in" and declare
2016 Jan 22
2
Allowing virtual registers after register allocation
Here are 2 patches, which are independent of each other. The first splits PrologEpilogInserter into 2 parts : http://reviews.llvm.org/D16481 After looking at the code I thought it made more sense for the major split to include whether callee-saved register spills are supported. So for non-virtual targets, virtual registers are not supported and scavenging is optionally supported, and vice versa
2011 Oct 03
0
patch: Fix [-Wunused-but-set-variable]
Description: Fix warning: variable set but not used [-Wunused-but-set-variable]. bugs.debian.org/633756. Related drivers were not tested. Last-Update: Sat, 13 Aug 2011 14:04:48 +0300 Index: b/drivers/belkinunv.c =================================================================== --- a/drivers/belkinunv.c 2011-05-31 13:36:49.000000000 +0300 +++ b/drivers/belkinunv.c
2015 Dec 10
3
Tiempo de vida
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20151210/04bc012e/attachment-0001.html>
2015 Dec 10
2
Tiempo de vida
Hola Jesús, La respuesta, desde mi punto de vista, es un poco off-topic de lo que se trata en esta lista, pero comento como lo veo yo. Con el nivel de detalle que tienes, puedes hacer varias cosas: - Simplemente mantén en tu almacén un número de cuchillas mayor que la última vez que tuviste que pedirlas con urgencia. En los entornos de Producción, efectivamente el que rompas el stock
2015 Dec 10
3
Tiempo de vida
Buenas He creado los histogramas, y los he guardado en función de la referneica en una variable: histograma<-tapply(datos$consumo,datos$Material,function(x)hist(x,col=8) Pero ahora la variable histograma como array, donde estan las 300 referencias. Si entor en una, por ejemplo, histograma[1], veo como es un tipo list con los siguientes campos: $breaks [1] 0.0 0.2 0.4 0.6 0.8 1.0 $counts
2011 Mar 04
3
Análisis de una serie temporal diaria
Hola a todos Estoy tratando de analizaruna serie temporal con datos diarios de temperaturas (40 años). He creado un objeto zoo (con ayuda de la lista, gracias) sobre el que encuentro la regresión lineal. He probado también a crear un objeto ts a partir del zoo. El problema que encuentro es que nose puede aplicar la función stl para hallar la componente estacional y la tendencia. Rdice que la
2015 Dec 10
3
Allowing virtual registers after register allocation
----- Original Message ----- > From: "Kevin B Smith" <kevin.b.smith at intel.com> > To: "Hal Finkel" <hfinkel at anl.gov> > Cc: "Krzysztof Parzyszek" <kparzysz at codeaurora.org>, llvm-dev at lists.llvm.org > Sent: Thursday, December 10, 2015 2:32:36 PM > Subject: RE: [llvm-dev] Allowing virtual registers after register allocation >
2015 Dec 10
2
Tiempo de vida
La referencia de las cuchillas, no son todas la misma Date: Thu, 10 Dec 2015 22:04:24 +0100 Subject: Re: [R-es] Tiempo de vida From: cof en qualityexcellence.es To: j.para.fernandez en hotmail.com CC: r-help-es en r-project.org Gracias. ¿Y qué es "Referencia"?... Gracias, Carlos Ortega www.qualityexcellence.es El 10 de diciembre de 2015, 21:48, Jesús Para Fernández
2016 Jan 22
2
Allowing virtual registers after register allocation
> On Jan 22, 2016, at 1:23 PM, Matthias Braun <mbraun at apple.com> wrote: > >> >> On Jan 22, 2016, at 12:29 PM, Derek Schuff <dschuff at google.com <mailto:dschuff at google.com>> wrote: >> >> Here are 2 patches, which are independent of each other. >> >> The first splits PrologEpilogInserter into 2 parts :