R/stslist.meant-methods.R

Defines functions print.stslist.meant

## ============================
## Methods for stsmeant objects
## ============================

print.stslist.meant <- function(x, digits=2, ...) {

	cn <- colnames(x)
	## Conversion for printing without attributes
	x <- as.matrix(x[1:nrow(x),1:ncol(x)])
	colnames(x) <- cn

	NextMethod("print", digits=digits,...)
}

Try the TraMineR package in your browser

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

TraMineR documentation built on Sept. 19, 2023, 1:07 a.m.