pandas-montecarlo
pandas-montecarlo copied to clipboard
A lightweight Python library for running simple Monte Carlo Simulations on Pandas Series data
mc = df['return'].montecarlo(sims=100, bust=0.1, goal=1) here, sims, bust and goal are all the parameters ?
How does it do an approxiation? read wikipedia about it, MC simulation has to generate approximation points randomly. However you produce just random numbers, Am I wrong?
Hi the readme example fails with: ``` ImportError Traceback (most recent call last) in () 1 #from pandas.api.types import is_list_like ----> 2 from pandas_datareader import data 3 4 df =...
Hi. As I see it "total = cumsum[-1:].T" always has the same value for all simulations (because all of them end in the same point). Which messes stats based on...
Hi, How can I use this package to do a Monte Carlo simulation for a demand model with two errors? THX !