Nothing
      summary.LMmanifest<-function(object,...){ 
	cat("Call:\n")
	print(object$call)
	cat("\nCoefficients:\n")
	cat("\n  Vector of cut-points:\n")
	print(round(object$mu,digits=4))
	cat("\n Support points for the latent states:\n")
	print(round(object$al,digits=4))
	cat("\n Estimate of the vector of regression parameters:\n")
	print(round(object$be,digits=4))	
	cat("\n Vector of initial probabilities:\n")
	print(round(object$la,digits=4))
	cat("\n Transition matrix:\n")
	print(round(object$PI,digits=4))
	
	if(is.null(object$si)==FALSE){
		cat("\n Sigma of the AR process:\n")
		print(round(object$si,digits=4))		
		cat("\n Parameter vector for AR:\n")
		print(round(object$rho,digits=4))
	}
	if(is.null(object$sebe)==FALSE){
		cat("\n Standard errors for the regression parameters:\n")
		print(round(object$sebe,digits=4))
		pvalueBe <- 2*pnorm(abs(object$be/object$sebe),lower.tail=FALSE)
		cat("\n p-values for the regression parameters:\n")
		print(round(pvalueBe,3))
	}
	if(is.null(object$selrho)==FALSE){
		cat("\n Standard errors for the logit type transformation of rho:\n")
		print(round(object$selrho,digits=4))
	}
	
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.