Modeling

From wiki
Jump to navigation Jump to search

Mostly based on this paper

Eyeopeners

Store results in a list.

for a in range(100):
    funcAresults[a] = functionAcall(bla,bla)
    funcBresults[a] = functionBcall(bla,bla)

ModSimPy is using Series from Pandas. This adds handy functions.

results.mean()
Return the mean (average) for the items in results