I have a simple dataset that contains some columns and I need to predict using simple markov model in python. I cannot see any support under sklearn library. My dataset columns are : "url", "ip", "browser", "request".
I have loaded the dataset into python pandas.
I need to train and predict the "url" state on the basis of "ip", "browser" and "request". How to create a simple markov model and train it and predict a state('url') on the basis of provided independent variables.
Please make the python code explanation simple.