Displaying 6 results from an estimated 6 matches for "chrl".
Did you mean:
chr
2014 Jul 07
2
Consulta paquetización con versión R 3.1.0
Hi everybody
I have a very big problem:
With R 3.0.2 I could construct the package for this code:
if (exists('.ChrL.env') == TRUE) {
rm(.ChrL.env)
}
.ChrL.env <- new.env()
.ChrL.env$lGlo <- list()
.ChrL.env$bStarted <- FALSE
CheckGloCreated <- function() {
if (.ChrL.env$bStarted == TRUE) {
stop("Data structures were already initialized.", call.=FALSE)
}
}
ChrL.Start <-...
2014 Jul 07
2
Consulta paquetización con versión R 3.1.0
Hi everybody
I have a very big problem:
With R 3.0.2 I could construct the package for this code:
if (exists('.ChrL.env') == TRUE) {
rm(.ChrL.env)
}
.ChrL.env <- new.env()
.ChrL.env$lGlo <- list()
.ChrL.env$bStarted <- FALSE
CheckGloCreated <- function() {
if (.ChrL.env$bStarted == TRUE) {
stop("Data structures were already initialized.", call.=FALSE)
}
}
ChrL.Start <-...
2014 Jul 08
0
Re: [R-es] Consulta paquetización con versión R 3.1.0
...adding invaluable help to this list.
Br. Frede
Sendt fra Samsung mobil
-------- Oprindelig meddelelse --------
Fra: Eva Prieto Castro
Dato:08/07/2014 18.39 (GMT+01:00)
Til: Duncan Murdoch
Cc: r-help
Emne: Re: [R] [R-es] Consulta paquetización con versión R 3.1.0
Solved!!
I removed this line:
.ChrL.env$bStarted <- FALSE
And run ok!!
I supose the method let the fact of initializing data structure, but not
the fact of assign.
The basic example runs ok. Now I have to test all the project.
Thanks!!
Eva
2014-07-08 13:02 GMT+02:00 Eva Prieto Castro <eva.pcastro.lind@gmail.com>:
&...
2014 Jul 08
2
Paquete generado no detectan ambiente particular creado.
Hola Eva.
Me alegro de que hayas resuelto el problema!
De todas formas, no tendrá algo que ver con los problemas de "globalización" de las variables que ya has tenido en .ChrL.env (hace un par de años, creo recordar)?.
Un Saludo,
Miguel.
-----Mensaje original-----
De: r-help-es-bounces en r-project.org [mailto:r-help-es-bounces en r-project.org] En nombre de Eva Prieto Castro
Enviado el: martes, 08 de julio de 2014 13:46
Para: r-help-es
Asunto: Re: [R-es] Paquete gen...
2014 Jul 09
3
Resumen de R-help-es, Vol 65, Envío 13
...Glo y bStarted, ambas incluidas en el environment creado (.Ch.env)
.Ch.env <- new.env()
.Ch.env$lGlo <- list()
.Ch.env$bStarted <- FALSE
CheckGloCreated <- function() {
if (.Ch.env$bStarted == TRUE) {
stop("Data structures were already initialized.", call.=FALSE)
}
}
ChrL.Start <- function() {
CheckGloCreated()
.Ch.env$bStarted <- TRUE
cat("Tested.\n")
}
Lo único peculiar al paquetizar es que en el Ch-internal.r (si le llamáis Ch al paquete) hay que corregir la línea que genera el package.skeleton y sustituirla por lo siguiente:
.Ch.env <-...
2014 Jul 08
3
Paquete generado no detectan ambiente particular creado.
...lo y bStarted, ambas incluidas en el environment creado (.Ch.env)
.Ch.env <- new.env()
.Ch.env$lGlo <- list()
.Ch.env$bStarted <- FALSE
CheckGloCreated <- function() {
if (.Ch.env$bStarted == TRUE) {
stop("Data structures were already initialized.", call.=FALSE)
}
}
ChrL.Start <- function() {
CheckGloCreated()
.Ch.env$bStarted <- TRUE
cat("Tested.\n")
}
Lo único peculiar al paquetizar es que en el Ch-internal.r (si le llamáis Ch al paquete) hay que corregir la línea que genera el package.skeleton y sustituirla por lo siguiente:
.Ch.env <-...