https://github.com/cran/HLSM
Revision afc6a064bff28609a373b20d7fb0cca9197ea0f1 authored by Aditya Bhat on 30 April 2019, 20:00:34 UTC, committed by cran-robot on 30 April 2019, 20:00:34 UTC
1 parent c80b731
Raw File
Tip revision: afc6a064bff28609a373b20d7fb0cca9197ea0f1 authored by Aditya Bhat on 30 April 2019, 20:00:34 UTC
version 0.8.1
Tip revision: afc6a06
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