Learn R Programming

isotone (version 1.0-1)

fSolver: User-Specified Loss Function

Description

Specification of a differentiable convex loss function.

Usage

fSolver(z, a, extra)

Arguments

z
Vector containing observed response
a
Matrix with active constraints
extra
List with element fobj containing the target function and gobj with the first derivative

Value

  • xVector containing the fitted values
  • lbdVector with Lagrange multipliers
  • fValue of the target function
  • gxGradient at point x

Details

This function is called internally in activeSet by setting mySolver = fSolver. It uses optim() with "BFGS" for optimization.

See Also

activeSet

Examples

Run this code
##Fitting isotone regression using active set (L2-norm user-specified)
set.seed(12345)
y <- rnorm(9)              ##response values
w <- rep(1,9)              ##unit weights
btota <- cbind(1:8, 2:9)   ##Matrix defining isotonicity (total order)
fit.convex <- activeSet(btota, fSolver, fobj = function(x) sum(w*(x-y)^2), gobj = function(x) 2*drop(w*(x-y)), y = y, weights = w)

Run the code above in your browser using DataLab