Skip to content

Commit

Permalink
fixed LR beta constraints, took out beta given since no rho is given
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Wang committed Mar 10, 2015
1 parent 747335e commit 7fab026
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions R/tests/testdir_jira/runit_hex_2020_LR_beta_constraints.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ test.LR.betaConstraints <- function(conn) {
myX = c("AGE","RACE", "DPROS", "DCAPS", "PSA", "VOL", "GLEASON")
lowerbound = rep(-1, times = length(myX))
upperbound = rep(1, times = length(myX))
starting = rep(-0.008235181, times = length(myX))
betaConstraints = data.frame(names = myX, lower_bounds = lowerbound, upper_bounds = upperbound, beta_given= starting)
betaConstraints = data.frame(names = myX, lower_bounds = lowerbound, upper_bounds = upperbound)
betaConstraints.hex = as.h2o(conn, betaConstraints)
prostate.csv = as.data.frame(prostate.hex)

Expand Down

0 comments on commit 7fab026

Please sign in to comment.