Skip to content

Commit e0eb1c6

Browse files
T to TRUE
1 parent 3da6c50 commit e0eb1c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

selectiveInference/R/funs.fixed.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fixedLassoInf <- function(x, y, beta,
66
lambda, family=c("gaussian","binomial","cox"),
77
intercept=TRUE, add.targets=NULL, status=NULL,
88
sigma=NULL, alpha=0.1,
9-
type=c("partial","full"), tol.beta=1e-5, tol.kkt=0.1,
9+
type=c("partial", "full"), tol.beta=1e-5, tol.kkt=0.1,
1010
gridrange=c(-100,100), bits=NULL, verbose=FALSE,
1111
linesearch.try=10) {
1212

@@ -150,7 +150,7 @@ fixedLassoInf <- function(x, y, beta,
150150
ci = tailarea = matrix(0,k,2)
151151

152152
if (type=="full" & p > n) {
153-
if (intercept == T) {
153+
if (intercept == TRUE) {
154154
pp=p+1
155155
Xint <- cbind(rep(1,n),x)
156156
# indices of selected predictors

0 commit comments

Comments
 (0)