search for: bstarted

Displaying 12 results from an estimated 12 matches for "bstarted".

Did you mean: started
2009 Jul 01
0
probit with sample selection error?
Deal all: i want to do the probit with sample selection estimation, the following is my code: probit with sample selection can be done by stata :heckprob The heckprobll is the likelihood function shown in W.H. Greene 5th p714 ¡´ The question is the convergence is very slow compare with Stata using likellihood only. ¡´ Second i did the similar way in matlab using fminsearch , the estimated
2014 Jul 08
3
Paquete generado no detectan ambiente particular creado.
...zip del paquete y cargado desde la RGui, no me detecta la existencia del environment que creé (.Ch.env). Es como si ahora el pkt sólo pudiera estar integrado (a efectos prácticos) por funciones, sin admitir la existencia de una estructura de datos subyacente, como es el conjunto formado por lGlo 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 &l...
2014 Jul 09
3
Resumen de R-help-es, Vol 65, Envío 13
...zip del paquete y cargado desde la RGui, no me detecta la existencia del environment que creé (.Ch.env). Es como si ahora el pkt sólo pudiera estar integrado (a efectos prácticos) por funciones, sin admitir la existencia de una estructura de datos subyacente, como es el conjunto formado por lGlo 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 &lt...
2004 Sep 15
2
efficient submatrix extraction
Hi, I have a matrix of say 1024x1024 and I want to look at it in chunks. That is I'd like to divide into a series of submatrices of order 2x2. | 1 2 3 4 5 6 7 8 ... | | 1 2 3 4 5 6 7 8 ... | | 1 2 3 4 5 6 7 8 ... | | 1 2 3 4 5 6 7 8 ... | ... So the first submatrix would be | 1 2 | | 1 2 | the second one would be | 3 4 | | 3 4 | and so on. That is I want the matrix to be evenly divided
2014 Jul 08
2
Paquete generado no detectan ambiente particular creado.
...---- 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 generado no detectan ambiente particular creado. Resuelto!! Retiré esta línea: .ChrL.env$bStarted <- FALSE Se ve que el proceso de paquetización no admite asignaciones; o mejor dicho, bloquea los objetos si además de establecer su tipo se realiza una asignación de valor. Tengo que extender el ajuste a todo el proyecto, pero -en principio- parece estar resuelta la cuestión; o mejor dicho,...
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 <- function() {    CheckGloCreated()     cat("Libraries have been loaded and data structure has been initial...
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 <- function() {    CheckGloCreated()     cat("Libraries have been loaded and data structure has been initial...
2011 Dec 19
1
None-linear equality constrained optimisation problems
Dear R users, I have a problem. I would like to solve the following: I have pL = 1/(1+e^(-b0+b1)) pM = 1/(1+e^(-b0)) pH = 1/(1+e^(-b0-b1)) My target function is TF= mean(pL,pM,pH) which must equal 0.5% My non-linear constraint is nl.Const = 1-(pM/pH), which must equal 20%, and would like the values of both b0 and b1 where these conditions are met. I have searched widely for an answer,
2014 Jul 08
0
Re: [R-es] Consulta paquetización con versión R 3.1.0
...valuable 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>: > Duncan, &...
2008 Feb 07
0
nxMyFLA.dll interacts badly with Nero
Hello, my name is Torsten Koffler, a Senior Software Engineer at Nero AG (Germany). I am the manager for Windows Quality Online Services (Winqual) issues in our company. We have run into some issues where it appears that a piece of Nero software (Nero.exe 8.2.8.0) is interacting badly with a piece of nxMyFLA.dll software (nxMyFLA.dll 1.0.0.33) and causing crash reports (Average Hits per day 15,
2010 Apr 21
12
Using AR.connection.execute(sql) -- messing with my string?
Does ActiveRecord.connection.execute(string) perform any modifications on the given string? If so, what quoting do I need to add? Here''s why: I''m trying to use execute(string) to load a stored procedure. I can hand-load the procedure without error (i.e. via dbconsole), but when I call the function below, it throws the error: ==== ActiveRecord::StatementInvalid: Mysql::Error:
2008 Dec 22
17
[PATCH 0 of 9] swiotlb: use phys_addr_t for pages
Hi all, Here''s a work in progress series whcih does a partial revert of the previous swiotlb changes, and does a partial replacement with Becky Bruce''s series. The most important difference is Becky''s use of phys_addr_t rather than page+offset to represent arbitrary pages. This turns out to be simpler. I didn''t replicate the map_single_page changes, since