print.MarkovChainSummary {clickstream} | R Documentation |
Prints the Summary of a MarkovChain Object
Description
Prints the summary of a MarkovChain
object.
Usage
## S3 method for class 'MarkovChainSummary'
print(x, ...)
Arguments
x |
A |
... |
Ignored parameters. |
Author(s)
Michael Scholz michael.scholz@th-deg.de
See Also
Examples
clickstreams <- c("User1,h,c,c,p,c,h,c,p,p,c,p,p,o",
"User2,i,c,i,c,c,c,d",
"User3,h,i,c,i,c,p,c,c,p,c,c,i,d",
"User4,c,c,p,c,d",
"User5,h,c,c,p,p,c,p,p,p,i,p,o",
"User6,i,h,c,c,p,p,c,p,c,d")
cls <- as.clickstreams(clickstreams, header = TRUE)
mc <- fitMarkovChain(cls)
print(summary(mc))
[Package clickstream version 1.3.3 Index]