similar to: R crashes with some characters.

Displaying 20 results from an estimated 8000 matches similar to: "R crashes with some characters."

2010 Jun 30
1
zfs rpool corrupt?????
Hello, Has anyone encountered the following error message, running Solaris 10 u8 in an LDom. bash-3.00# devfsadm devfsadm: write failed for /dev/.devfsadm_dev.lock: Bad exchange descriptor bash-3.00# zpool status -v rpool pool: rpool state: DEGRADED status: One or more devices has experienced an error resulting in data corruption. Applications may be affected. action: Restore the file in
2002 May 06
2
Upgrade to 1.5.0
Hi all! my apologies if this is too elementary: I upgraded to 1.5.0. I copied my library folder on version 1.4.1 to the library folder on 1.5.0. When I try to upload a package via the menu I get this: Error in sort(.packages(all.available = TRUE)) : 1 argument passed to "sort" which requires 2. do I have to copy any other file from the previous version?. Thanks in
2012 Feb 27
4
Duda lapply
Hola a todos/as: Tengo la siguiente duda: Construyo una lista de tamaño 2, del siguiente modo: miLista<-list() miLista[[1]]<-list(nombre="Ana", apellido1="Pérez", apellido2="Sánchez") miLista[[2]]<-list(nombre="Carlos", apellido1="Núñez", apellido2="Sierra") Le aplico la función turnoLaboratorio: miResul<-lapply(miLista,
2012 Mar 06
11
Buscando la solución más eficiente para generar resultados a partir de un list
Hola:   Tengo una lista de 2 elementos, cada uno de los cuales contiene información relativa a un sujeto (Pablo y Carlos).   lSujetos <- list() lSujetos[[1]] <- list(nomfich="Pablo", colTime=5, colVars=c(6,7,8)) lSujetos[[2]] <- list(nomfich="Carlos", colTime=5, colVars=c(6,7,8)) A continuación, leo las series temporales correspondientes a cada individuo. En este caso
2002 Mar 25
1
Problems installing Tcl/Tk
Hi! Two questions: 1.-I am trying to put Tcl/tk to work. I keep getting the following: >Error in dyn.load(x, as.logical(local), as.logical(now)) : > unable to load shared library "C:/RW1041/library/tcltk/libs/tcltk.dll": >LoadLibrary failure: No se puede hallar uno de los archivos de biblioteca necesarios para ejecutar esta aplicación. >Error in library(tcltk) :
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
Eva, ¿Algo asi o te entiendo mal? l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <- "nombre"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[
2010 Jun 18
5
convertir archivo texto en data frame
Tengo un archivo de texto donde cada línea es de la siguiente forma: "aa-mm-dd hh:mm:ss Nombre Apellido" ¿Hay alguna forma de usar read.table o algo similar para obtener directamente un data frame que tenga dos columnas donde una tenga la fecha y quede de tipo PosiX y la otra character con el nombre completo? Gracias, Sebastián.
2005 Sep 01
2
Inbox weirdness
I recently had a system crash and my inbox became inaccessible via IMAP. ls -ld /var/spool/mail drwxrwxr-x 2 root mail 4096 Sep 1 07:54 /var/spool/mail ls -l /var/spool/mail/ignacio -rw-rw---- 1 ignacio mail 7222021 Sep 1 07:54 /var/spool/mail/ignacio /usr/libexec/dovecot/imap * PREAUTH [CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT IDLE CHILDREN LISTEXT LIST-SUBSCRIBED
2019 Feb 07
6
Optimización identificación de casos similares
Buen día a todos, Agradezco su ayuda con lo siguiente: Tengo 100.000 registros con nombres de personas con su respectivo número de documento, quiero identificar casos que tengan un porcentaje de igualdad alto, no del 100% porque ya esos los tengo identificados, sino casos como por ejemplo: Nombre: Juan Pérez Documento: 123456789 Nombre: Juan Pérez Documento: 1234056789 Este caso sería una
2012 Mar 16
2
Football Manager 2010 doesn't work
Hello. I want to install Football Manager 2010, with 10.1 patch. It has a gold rating here: http://appdb.winehq.org/objectManager.php?sClass=version&iId=18296 The installation should work fine, but not. This appears when I execute the setup.exe file: Code: [ignacio at myhost iso]$ wine setup.exe err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
2017 Mar 19
4
Problema con paquetes knitr y rmarkdown
Buenas tardes, Al tratar de hacer en rstudio documentos pdf, word o html con un archivo rmd me sale un mensaje tal que así: "Rendering R Markdown documents requires updated versions of the following packages: knitr, rmarkdown. Do you want to install these packages now?" He probado a reinstalar esos paquetes (que ya tenía instalados) pero cuando vuelvo a aplicar knit to pdf,
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
Hola a tod@s: Supongamos una lista como ésta: l <- list() l$nombre <- "Ana" l$apellido <- "Pérez" Ahora supongamos que tengo esta variable: parametro <- "nombre" Necesito saber dos informaciones: 1º) Saber si existe la función nombreOnValidate. Es decir, debo concatenar el valor de parametro con la cadena "OnValidate" y hacer un exists,
2017 Dec 22
2
ot: how to block persistent same invalid account, different IPs
I've installed fail2ban, it seems to be working as it identified my failed test logins, BUT, my question is: what can I do when I see same invalid name trying to login to dovecot, different IP each time, how can I say block each IP as used by this name ? or it that a bad idea ? I can see two persistent attempts as so: I don't have such user 'ignacio' or 'julian' # grep
2017 Dec 22
0
ot: how to block persistent same invalid account, different IPs
On 22/12/17 11:41, Voytek Eymont wrote: > I've installed fail2ban, it seems to be working as it identified my failed > test logins, BUT, my question is: > > what can I do when I see same invalid name trying to login to dovecot, > different IP each time, how can I say block each IP as used by this name ? > or it that a bad idea ? > > I can see two persistent attempts as
2013 Jul 06
1
Duda trabajando con nombres de objetos que se reciben como parámetros
Algo asi? l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <- "nombre"paste(l[ parametro][[1]], 'OnValidate', sep='')[1] "AnaOnValidate"l[ parametro][[1]][1] "Ana"x <- 1:5AnaOnValidate <- function(x) print(x)if (exists(paste(l[ parametro][[1]], 'OnValidate', sep=''))) do.call(paste(l[
2012 Mar 16
3
Cosinor
Hola, ¿qué tal?: Tengo la siguiente duda: Para el caso del Cosinor Simple: Y = M + A * cos(2*pi*t/T + phi) + error Cuando T conocido, podemos asumir: Y = M + beta * X1 + gamma * X2 + error, siendo X1 = cos(2*pi*t/T) y X2 = sin(2*pi*t/T) En este caso (Cosinor simple) el modelado lo llevo a cabo del siguiente modo: lm( y ~ X1 + X2) Para el caso de componentes múltiples: Y = M + ?Aj *
2016 Sep 22
0
Samba 4 Member server show diferent UID than Ad Server
I'm having the same problem and i can't find the solution. How are you about this ? Tks!! 2016-06-14 13:09 GMT-03:00 Juan Ignacio <juan.ignacio.pazos at gmail.com>: > Anyway everything seems to work well. > The shares are correctly and users recognize them without problems. getent > and wbinfo. > > The main problem is that apparently the Member DC does not get the
2006 Oct 26
4
installing xen-3.0.3 on AMD sempron, CentOS4.4
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi I''m currently using xen-3.0.2-testing on several servers. But when xen 3.0.3 was announced I wanted to try it, of course it should have several iprovements and bugfixes, etc. I did the same steps I was previously done in order to compile xen-3.0.2, and in fact xen compiled and installed very cleanly. I created my initrd image and then I
2012 Jul 13
3
Instalar R manualmente en Ubuntu
Hola Amigos: Gracias por todas las respuestas sobre como filtrar datos en un data frame. Ahora tengo un nuevo problema, necesito instalar R 2.15 manualmente, pero no puedo hacerlo desde un repositorio. Alguna solución??????????' Un Saludos, Leonardo ------------ próxima parte ------------ An embedded and charset-unspecified text was scrubbed... Name: no disponible URL:
2004 Sep 03
2
problem with a router machine
Hello everyone: I have a problem with the shorewall configuration. Let''s me tell you. I have installed shorewall 2.0.4 into a machine with 2.6.8 kernel. This machine works like a software-router: it has 2 netcard eth0 goes to the local network 192.168.0.0/24 eth1 is an interface for ppp0 (there is an ADSL conected) I have defined the Network Zones (net, loc); The Network Interfaces