We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we call markovchainFit with the laplace or bootstrap method, it should warn us that the method is not available for a list. For example:
markovchainFit
laplace
bootstrap
c1<-c("a","b","c","c","e") c2<-c("a","b","d","e") c3<-c("a","c","b","c","d") c4<-c("a","b","b","d","b","c","d","e") c5<-c("a","c","c","d","d") c6<-c("a","c","d","d","b","b","e") mylist<-list(c1,c2,c3,c4,c5,c6) mylistMc<-markovchainFit(data = mylist, method = "laplace")
Related issue: #155
The text was updated successfully, but these errors were encountered:
Adds check for method paramter in markovchainFit. Addresses #166, closes
6e69e0c
#165.
c4d6a3a
ncordon
No branches or pull requests
When we call
markovchainFit
with thelaplace
orbootstrap
method, it should warn us that the method is not available for a list. For example:Related issue: #155
The text was updated successfully, but these errors were encountered: