Based on my reading some course notes as well as the answers and comments to this SO post I started thinking about the general steps for creating a stationary distribution.
Assuming my problem were to model the chance of snow tomorrow based on weather conditions today I would need to be able to predict probabilites from each distribution:
use Monte Carlo methods to generate a larger dataset based on the parameters for each variable I had observed in my data.know that 50% chance of sun tomorrow if sunny today. know that 10% chance of snow tomorrow if raining today. know that 60% chance of snow if temperature is below freezing.Feed that larger dataset intoUse a convergence algorithm (like Metropolis-Hastings) to get a distribution for each variable. This distribution tells the likelihood of a particular change in that variable. (eg 10% chance of snow tomorrow if it is raining today for the snow distribution). or 50% chance of sun tomorrow if it is sunny today for the sun distribution.??? Do magic???Create a single distribution that takes into account the likelihood of each variable (eg must be raining and cold to be snowing), so if raining today you have X percent chnace of it snowing tomorrow. This is the Probability Mass Function (PMF)Get a Probability Mass Function (PMF) aka stationary distribution that tells you the probability of a specific outcome given your starting state.
My question is, how do I do Step 3, taking the probability of one distribution (eg sunny or rainy from the SO example) and add its effect to another distribution (say temperature) to predict days snowing. How do I know how much effect rain has on snowing? Do I assume by default that it must be raining to be snowing (if I didnt know this based on logic)?