https://github.com/cran/HLSM
Raw File
Tip revision: c80b73102b44a867701a8fa3eb0dd51a7fab5592 authored by Samrachana Adhikari on 26 May 2018, 21:01:51 UTC
version 0.8
Tip revision: c80b731
print.summary.HLSM.R
print.summary.HLSM = function(x,...){
    message("Call:\n")
    print(x$call)
    message("\n Estimated Intercept:\n")
    print(x$est.intercept)
    if(all(!is.na(x$est.slopes))){
    message("\n Estimated Slopes:\n")
    print(x$est.slopes) }
    if(all(!is.na(x$est.alpha))){
    message("\n Estimated Intervention Effect:\n")
    print(x$est.alpha) }
}

back to top