search for: logitregvr

Displaying 3 results from an estimated 3 matches for "logitregvr".

Did you mean: logitreg
2008 Sep 29
0
Logistic Regression using optim() give "L-BFGS-B" error, please help
...g() originally described in MASS (the book 4th Ed.) by Venebles & Ripley, p445. I used the code as provided but made couple of changes to run a 'constrained' logistic regression, I set the method = "L-BFGS-B", set lower/upper values for the variables. Here is the function, logitregVR <- function(x, y, wt = rep(1, length(y)), intercept = T, start = rep(0, p), ...) { #-------------------------------------------# # A function to be minimized (or maximized) # #-------------------------------------------# fmin <- function(beta, X, y, w) { p <- plogis(X %*% beta) #p &lt...
2008 Sep 28
0
constrained logistic regression: Error in optim() with method = "L-BFGS-B"
...eg() originally described in MASS (the book 4th Ed.) by Venebles & Ripley, p445. I used the code as provided but made couple of changes to run a 'constrained' logistic regression, I set the method = "L-BFGS-B", set lower/upper values for the variables. Here is the function, logitregVR <- function(x, y, wt = rep(1, length(y)), intercept = T, start = rep(0.1, p), ...) { #-------------------------------------------# # A function to be minimized (or maximized) # #-------------------------------------------# fmin <- function(beta, X, y, w) { p <- plogis(X %*% b...
2008 Oct 15
0
R-help Digest, Vol 67, Issue 31
...g() originally described in MASS (the book 4th Ed.) by Venebles & Ripley, p445. I used the code as provided but made couple of changes to run a 'constrained' logistic regression, I set the method = "L-BFGS-B", set lower/upper values for the variables. Here is the function, logitregVR <- function(x, y, wt = rep(1, length(y)), intercept = T, start = rep(0, p), ...) { #-------------------------------------------# # A function to be minimized (or maximized) # #-------------------------------------------# fmin <- function(beta, X, y, w) { p <- plogis(X %*% beta) #p &lt...