search for: borrado

Displaying 20 results from an estimated 449 matches for "borrado".

2013 Oct 24
1
failed: Message has been copied too many times
...ixes the problem. So I have tried this, and I have moved all messages from this folder to another one. But this time, after this, indexes directory is still using a lot of space. And the folder seems to have more serious problems: amateo_adm at myotis51:~$ sudo doveadm search -u vlo mailbox BORRADOS.INBOX.MNCS doveadm(vlo): Error: Syncing mailbox BORRADOS.INBOX.MNCS failed: Message has been copied too many times (59306 + -1) I have tried to delete the folder, with the same result: amateo_adm at myotis51:~$ sudo doveadm mailbox delete -u vlo BORRADOS.INBOX.MNCS doveadm(vlo): Error: Can...
2013 May 06
1
dsyncing lazy_expunge namespace
...is correctly synced to the newer server, except the lazy_expunge namespace, which is not synced at all. The config in my old server is: namespace { # hidden = yes # list = no # Temporally, only for migration hidden = no list = yes location = maildir:~/Maildir/expunged prefix = BORRADOS. separator = . } and in the newer one is: namespace { hidden = yes list = no location = mdbox:%h/expunged:INDEX=/mail/indexes/%2Ln/%Ln/expunged prefix = BORRADOS/ separator = / } With a tcpdump I have checked that old servers list the namefolder, this is the IMAP dialog for...
2014 Sep 07
3
problema con los cambios de marcas temporales en el eje X
...e yo quiero es poner marcas mensuales desde agosto de 2013 hasta mayo 2014, incluido el cambio de año (ya sea dic?13 o ene?14), pero por mucho que lo intento no me sale. ¿Podéis ayudarme?. Muchas gracias por adelantado y un cordial saludo Carlos ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20140907/f9910188/attachment.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: grafica.pdf Type: application/pdf Size: 7540 bytes Desc: no disponible URL: <https...
2012 Nov 13
0
Problem importing messages with lazy_expunged configured
Hello, I have a problem importing messages since I have configured lazy_expunge. My lazy_expunge configuration (that is correctly working when a message is expunged) is: plugin { lazy_expunge = BORRADOS. } namespace { hidden = yes list = no location = maildir:~/Maildir/expunged prefix = BORRADOS. separator = . } but when I try to import messages I get: amateo_adm at myotis31:~$ sudo doveadm -vD import -u angel.luis maildir:/tmp/angel.luis '' mailbox INBOX doveadm(root)...
2018 Oct 11
10
Transponer data frame.
...acionalidad_uruguaya Nacionalidad_paraguaya Nacionalidad_brasilera 1240 2341 4432 67000 1234 1241 7344 543000 3000 234000 intenté con *vuelos_f<-t(vuelos) *pero no logro lo que quiero, queda así: [image: image.png] Muchas gracias! Saludos, Juan. ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20181011/4a0bc911/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 6075 bytes Desc: no disponible URL: <https:/...
2020 Aug 04
3
Gráfico barras 3 ejes
Buenas tardes, quisiera hacer un gráfico como el de la figura ¿alguna sugerencia? con ggplot2 no he podido. Muchas gracias [image: Captura.JPG] -- *Andrés Hirigoyen* * Prof. Ciencias Biológicas* *Ing. Agr. Forestal (MSc) * ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20200804/06b65f5b/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: Captura.JPG Type: image/jpeg Size: 101129 bytes Desc: no disponible URL: <ht...
2018 Jul 23
4
Ayuda ggplot
...2015, me gustaría agregar un gráfico de linea y puntos para el año 2015, pero no he podido lograrlo , la idea es generar un gráfico de esta forma. Adjunto mi scrip y mis bases. Agradeceré su colaboración. [cid:f23eff1b-3212-4797-acef-b0728f065826] ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20180723/1a39127e/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 29463 bytes Desc: image.png URL: <https://st...
2019 Jun 07
5
Transformar factor a numérico.
...o_2019$asistidos<-as.numeric(levels(caac_enero_2019$asistidos))[caac_enero_2019$asistidos] Pero al hacer: sum(caac_enero_2019$asistidos) Arroja el siguiente mensaje: NA. Alguien me podrá dar una mano para resolver esto? Muchas gracias! ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20190607/d8b9bdd4/attachment.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 3533 bytes Desc: no disponible URL: <https://stat...
2024 Oct 07
1
Optimizar bucle for
...df <- df[order(df$ID, df$date), ] # Bucle per cada ID for (id in unique(df$ID)) { # Filtrar per ID actual subset_df <- df[df$ID == id, ] # Si hay más de un registro borrar aquellos de más de 6 meses if (nrow(subset_df) > 1) { # Inicializar la referencia del primer registro no borrado reference_date <- subset_df$date[1] for (i in 2:nrow(subset_df)) { # Calcular la diferencia en días respecto a la referencia diff_days <- as.numeric(difftime(subset_df$date[i], reference_date, units = "days")) # Si la diferencia es menor que el umbral, ma...
2024 Oct 07
1
Optimizar bucle for
...n_borrar <- sum(df$borrar == 1) print(n_borrar) df <- df[df$borrar != 1,] } --- El programa no hacía lo que documentaba sino otra cosa distinta. Ahora solo borra una línea por id en cada pasada, la de la primera fila que está a menos de 6 meses de la anterior (por id). Antes podía haber borrado más de una fila. Un saludo, Carlos J. Gil Bellosta http://www.datanalytics.com On Mon, 7 Oct 2024 at 14:50, Griera <griera en yandex.com> wrote: > Muchas gracias, Carlos, por esta ayuda! > > Desconocia la existencia de ddply y me cuesta interpretar el código. Estoy > en ello....
2013 Sep 06
3
Samba4 LDAP Integration with Asterisk
...tario y puede contener informaci?n reservada y/o CONFIDENCIAL. Si Vd. no es el destinatario original no est? autorizado a copiar o distribuir esta comunicaci?n a ninguna otra persona. Si ha recibido este mensaje por error, le rogamos nos lo comunique inmediatamente por esta misma v?a y proceda a su borrado. ** Gracias**.* *DISCLAIMER: This message is intended exclusively for its addressee and may contain information that is CONFIDENTIAL and protected by professional privilege. If you are not the intended recipient you are hereby notified that any dissemination, copy or disclosure of this communicat...
2020 Sep 04
2
Tabla con dibujo en R Markdown
...Se podría crear en R Markdown una tabla de este estilo? [cid:3350c780-8006-4088-8226-ce28cb0ce975] A las malas se puede poner la tabla entera como una imagen, pero me gustaría saber si R Markdown permite meter imágenes dentro de tablas. Gracias. ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20200904/daae0c1e/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: Outlook-t1huualm.png Type: image/png Size: 21305 bytes Desc: Outlook-t1huualm.p...
2024 Oct 07
1
Optimizar bucle for
...or (id in unique(df$ID)) { > > # Filtrar per ID actual > > subset_df <- df[df$ID == id, ] > > > > # Si hay más de un registro borrar aquellos de más de 6 meses > > if (nrow(subset_df) > 1) { > > # Inicializar la referencia del primer registro no borrado > > reference_date <- subset_df$date[1] > > > > for (i in 2:nrow(subset_df)) { > > # Calcular la diferencia en días respecto a la referencia > > diff_days <- as.numeric(difftime(subset_df$date[i], reference_date, > > units = "days&q...
2020 Mar 05
2
Nombrar primer columna data.frame
...n aov en esa columna quedan los tratamientos. ¿Como es posible ponerle una etiqueta y trabajarla como una variable mas? Anexo un ejemplo. [image: image.png] muchas gracias -- *Andrés Hirigoyen* * Prof. Ciencias Biológicas* *Ing. Agr. Forestal (MSc) * ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20200305/ffab45cc/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 12228 bytes Desc: no disponible URL: <https:...
2013 Jun 04
4
función recode
...ólo por la persona a la que va dirigida. Si Ud. no es el destinatario señalado le informamos que está prohibida, y puede ser ilegal, cualquier divulgación o reproducción de este mensaje. Antes de imprimir este e-mail piense bien si es necesario hacerlo. ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20130604/98d46585/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: no disponible Type: image/jpg Size: 15662 bytes Desc: no disponible URL: <htt...
2018 Dec 29
2
Rmarkdown -H2O
...ya que en el documento me sale con rayas con el porcentaje de entrenamiento que lleva. ¿Alguien sabe como eliminarlas para que no aparezca en el documento en pdf? [cid:image001.png en 01D49FC5.4D2AEEE0] Muchas Gracias. Un saludo y Felices Fiestas. ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20181229/773b1a0d/attachment.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: 38FB4C1430204D208BD032B6CAB9FD1F.png Type: image/png Size: 4479 bytes Desc: 38FB4C14...
2016 Sep 05
3
Tests of all canonical RDA axes
...be fitted with formula interface Dr. Luis A. Espínola. Biólogo - Ecologia de Sistemas Acuáticos Instituto Nacional de Limnología (INALI) Ciudad Universitaria - Paraje "El Pozo" CP: 3000, Santa Fe. Argentina TE: + 54 342 4511645 ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20160905/1c90f6a4/attachment.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 5801 bytes Desc: no disponible URL: <https://s...
2024 Oct 07
1
Optimizar bucle for
...gt; # Bucle per cada ID > for (id in unique(df$ID)) { > # Filtrar per ID actual > subset_df <- df[df$ID == id, ] > > # Si hay más de un registro borrar aquellos de más de 6 meses > if (nrow(subset_df) > 1) { > # Inicializar la referencia del primer registro no borrado > reference_date <- subset_df$date[1] > > for (i in 2:nrow(subset_df)) { > # Calcular la diferencia en días respecto a la referencia > diff_days <- as.numeric(difftime(subset_df$date[i], reference_date, > units = "days")) > > # Si la...
2014 Nov 05
1
calling post-login script with doveadm
...ema de Gestion de Seguridad de la Informacion siendo para uso exclusivo del destinatario, quedando prohibida su divulgacion copia o distribucion a terceros sin la autorizacion expresa del remitente. Si Vd. ha recibido este mensaje erroneamente, se ruega lo notifique al remitente y proceda a su borrado. Gracias por su colaboracion. ______________________
2014 Mar 06
3
Gráfico de intervalo de confianza
Hola a todos ¿Como se hace el gráfico que muestran distintos intervalos de confianza a la vez con R? Un estilo al que se muestra en la imagen, sacado de internet. Saludos ------------ próxima parte ------------ Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20140306/054748a8/attachment-0001.html> ------------ próxima parte ------------ A non-text attachment was scrubbed... Name: fig56109a.jpg Type: image/jpeg Size: 16874 bytes Desc: no disponible URL: <ht...