R/lassoshooting.R

Defines functions softthresh lassoshooting

Documented in lassoshooting softthresh

lassoshooting <- function(X=NULL, y=NULL, lambda, XtX = NULL, Xty = NULL,
	   thr = 1e-06, maxit = 10000, nopenalize = NULL,
	   penaltyweight = NULL, trace = 0, ...) {
  .External("ccd", trace=trace,X=X,y=y,XtX=XtX,Xty=Xty,lambda=lambda,thr=thr,maxit=maxit,nopenalize=nopenalize,penaltyweight=penaltyweight,..., PACKAGE="lassoshooting")
}
softthresh <- function(x,t) {
  .External("R_softthresh",x,t)
}

Try the lassoshooting package in your browser

Any scripts or data that you put into this service are public.

lassoshooting documentation built on April 5, 2022, 1:15 a.m.