https://github.com/cran/HLSM
Raw File
Tip revision: 281f55f9f8ae3be814d154729507a7fb494e8a92 authored by Tracy Sweet on 06 December 2021, 12:00:02 UTC
version 0.9.0
Tip revision: 281f55f
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) }
}

back to top