similar to: Ejecucion de script cada cierto tiempo

Displaying 20 results from an estimated 1000 matches similar to: "Ejecucion de script cada cierto tiempo"

2013 Oct 08
2
Ejecucion de script cada cierto tiempo
Hola Carlos. Muchas gracias por la sugerencia. En realidad me gustaria tener la posibilidad de que el script fuera multiplataforma. Alguna otra sugerencia? Gracias! --JIV Sent from my phone. Please excuse my brevity and misspelling. On Oct 8, 2013, at 10:57 AM, Carlos Ortega <cof@qualityexcellence.es> wrote: Hola Jorge, Puesto que trabajas en Mac, lo tienes muy inmediato el hacerlo sobre
2013 Oct 10
1
Ejecucion de script cada cierto tiempo
Muchas gracias, Carlos por tu respuesta. En este caso una solucion solo en R pareceria la manera de resolver el problema y hacia alla apuntare. El algoritmo que necesito ejecutar es mas complejo que el que describi en mi mensaje inicial, asi que aun hay mucho camino por recorrer. Saludos, Jorge.- 2013/10/9 Carlos Ortega <cof@qualityexcellence.es> > Hola Jorge, > > En Windows
2013 Oct 08
0
Ejecucion de script cada cierto tiempo
Hola Jorge, Puesto que trabajas en Mac, lo tienes muy inmediato el hacerlo sobre shell-script con los comandos "cron" y "crontab" si no recuerdo mal. En el cron/crontab lo que dirías es que se lanzara un script de R (este script de R incluye el generador las funciones y hasta su cierre con "q()"). De esta forma no tienes por qué tener una instancia de R abierta de
2013 Oct 08
0
Ejecucion de script cada cierto tiempo
Hola Jorge, En Windows hay un equivalente al "cron": http://stackoverflow.com/questions/132971/what-is-the-windows-version-of-cron Pero para que sea plataforma-independiente, o bien incluyes en "R" con la solución que has planteado. O bien, haces que un Windows sea como un Linux/Unix con Cygwin que también tiene cron/crontab (esto para mí es matar moscas a cañonazos), pero es
2013 Jul 24
4
Error al utilizar twitteR
Buenas tardes a tod@s, Estoy incursionando en el analisis de tweets utilizando el paquete twitteR y siguiendo http://www.webmining.cl/2012/07/text-mining-de-twitter-usando-r/ Desafortunadamente cuando ejecuto # cargar librerias library(twitteR) library(tm) library(wordcloud) # recolecta tweets de @camila_vallejo tweets = userTimeline("camila_vallejo", 2000) obtengo Error in
2013 Jul 24
2
Error al utilizar twitteR
Muchas gracias Marcelino. Desafortunadamente al ejecutar el ejemplo que aparece en ?registerTwitterOAuth obtengo twitCred$handshake() Error: Unauthorized registerTwitterOAuth(twitCred) Error in registerTwitterOAuth(twitCred) : oauth has not completed its handshake Alguna otra sugerencia? Muchas gracias! Jorge.- 2013/7/25 Marcelino de la Cruz <marcelino.delacruz@upm.es> > Mira
2013 Jul 25
1
Resumen de R-help-es, Vol 53, Envío 38
Hola Jorge. Para poder correr las funciones del library twitteR tienes que tener varias cosas. Una cuenta en twitter y con esa cuenta inscribirte como developer en dev.twitter.com. Posterior a esto tienes que inscribir un app dentro de twitter y con las claves que se otorgan tienes que correr la función de autorizacion que ya te indicaron. Varias aclaraciones, la librería puede generar problemas
2013 Jul 24
2
Error al utilizar twitteR
Si, Carlos, gracias. Pero desafortunadamente el link con el PDF no funciona :( --JIV Sent from my phone. Please excuse my brevity and misspelling. On Jul 24, 2013, at 4:51 PM, Carlos Ortega <cof@qualityexcellence.es> wrote: Hola, ¿Viste la sugerencia/ayuda en StackOverflow?: http://stackoverflow.com/questions/17408930/twitter-first-example Saludos, Carlos Ortega
2013 Dec 20
2
Problemas con "encoding"
Buenas noches a todos, Estoy descarganado tweets a través del paquete twitteR en dos sistemas diferentes. La configuración del primero, un MacBook Pro, es R version 3.0.2 Patched (2013-12-11 r64449) Platform: x86_64-apple-darwin10.8.0 (64-bit) locale: [1] en_AU.UTF-8/en_AU.UTF-8/en_AU.UTF-8/C/en_AU.UTF-8/en_AU.UTF-8 attached base packages: [1] compiler stats graphics grDevices utils
2006 Feb 17
0
Error '3633' en tiempo de ejecucion
Hi, i'm new in the list. more of that error fixme:ole:CoRegisterMessageFilter stub fixme:heap:RtlCompactHeap stub fixme:heap:RtlCompactHeap stub fixme:heap:RtlCompactHeap stub fixme:heap:RtlCompactHeap stub fixme:heap:RtlCompactHeap stub fixme:ole:CoRegisterMessageFilter stub any help , the software is made in Visual Basic Sorry my english -------------- next part -------------- An HTML
2016 Jul 15
4
Calcular media cada x tramos
Buenas, Estoy intentando caracterizar una curva de 180 puntos y sacar su vector de caracteristica: Punto de inicio, Máximo Minimo .... Para ello tengo un dataframe con las distintas curvas, de la forma siguiente: segundos valor curva 1 170 1 2 175 1 ...................................... 180 125 1 1
2013 Dec 21
1
Problemas con "encoding"
Hola La codificación con uft-8 y etc., es un poco complicada, tendría que ser sencillo, pero siempre aparecen problemas. Por las dudas le comento que un inconveniente que tuve, es que al tener archivos en R, guardados como Rnw (aprovecho a colocar comentarios y cosas en latex), y cambiar la ubicación o la carpeta, la codificación de texto se rompía, es decir donde decía alguna palabra con
2014 May 29
1
mcmapply Core Usage
Hello, I have a minimal example that shows a problem I'm having with parallel processing. library(parallel) mcmapply(function(x, y) { print("Running") Sys.sleep(10) }, as.list(1:10), as.list(10:1), mc.cores = 16, SIMPLIFY = FALSE) I see "Running" printed once every ten seconds. I read the documentation for mcmapply, but I don't understand why it wouldn't
2008 Jan 25
2
Using bquote: question
Hi all Observe: x <- c(1,2) y <- c(1,-1) phi <- 1 p <- 2 par( mfrow=c(1,2)) plot(x , y, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) plot(y ~ x, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) par( mfrow=c(1,2)) On my system (details below), the first plot is correct (in my understanding), and produces a title reading "p=2 and phi=1"
2014 Feb 23
1
Random Count Generation with rnbinom
The documentation states : An alternative parametrization (often used in ecology) is by the mean ?mu?, and ?size?, the dispersion parameter. However, this fails : > rnbinom(10, mu = 100, size = 0) [1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN Warning message: In rnbinom(10, mu = 100, size = 0) : NAs produced For dispersion set to 0, it should work like drawing from a Poisson distribution.
2020 Jul 10
2
Strange behaviour of methods::slot() when returning a tibble
I have an S4 object class defined in a Bioconductor package which contains multiple slots, some of which are tibbles, whilst others are vectors. If I call slot(object, name) where 'name' is an slot that contains a vector, everything works as expected. However, when I call slot(object, name) where 'name' is an slot that contains a tibble I get the following warning: Warning
2008 Apr 03
1
Lapack error in Design:::ols
Hi, I'm trying to use Frank Harrell's Design:::ols function to do regression of y (numeric) on the interaction of two factors (x1 and x2), but Lapack throws an error: > library(Design) ... > load(url("http://www.csse.unimelb.edu.au/~gabraham/x")) > ols(y ~ x1 * x2, data=x) Error in chol2inv(fit$qr$qr) : 'size' cannot exceed nrow(x) = 20 > traceback()
2007 Jun 15
2
sma package, and MouseArray data set
Hi all I have just downloaded the sma package from CRAN. On installing on my linux machine, I get the message > library(sma) > data(MouseArray) Warning message: file 'MouseArray.RData' has magic number 'RDX1' Use of save versions prior to 2 is deprecated Hereafter, MouseArray is not found: > MouseArray Error: object "MouseArray" not found We were
2007 Jan 25
3
Error in loadNamespace(name) (PR#9464)
Full_Name: Ross Darnell Version: 2.4.1 OS: Linux Submission from: (NULL) (130.102.133.33) rdarnell at pc:~/Data$ ls -al .RData -rwxrwxrwx 2 root root 13551 2006-12-06 08:58 .RData rdarnell at pc:~/Data$ R R version 2.4.1 (2006-12-18) Copyright (C) 2006 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to
2013 Oct 04
2
Tab Separated File Reading Error
Hello, I have a seemingly simple problem that a tab-delimited file can't be read in. > annoTranscripts <- read.table("matched.txt", sep = '\t', stringsAsFactors = FALSE) Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, : line 5933 did not have 12 elements However, all lines do have 12 columns. > lines <-