- It's a simple Markov chain implementation. It gets the data from a txt file. Future value analysis and proportions.
Install with Pip.
pip install markovch
from markovch import markov
diagram = markov.Markov('./data_eng.txt')
print(diagram.result_list(50))
- It must be run with json data.
- The functions can be updated.