R/print.summary.value.R

print.summary.value <-
function (x, ...){

  cat ("Estimated Optimal Value: \n");
  print (x$optVal)
  cat ("Estimated Value of (1, 1) Regime: \n");
  print (x$PosPos)
  cat ("Estimated Value of (1, -1) Regime: \n");
  print (x$PosNeg)
  cat ("Estimated Value of (-1, 1) Regime: \n");
  print (x$NegPos)
  cat ("Estimated Value of (-1, -1) Regime: \n");
  print (x$NegNeg)
}

Try the iqLearn package in your browser

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

iqLearn documentation built on May 2, 2019, 6:44 a.m.