Difference between revisions of "Modeling"

From wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
ModSimPy is using Series from [[Pandas]]. Don't know why yet.
+
ModSimPy is using Series from [[Pandas]]. This adds handy functions.
 +
;results.mean()
 +
:Return the mean (average) for the items in results

Revision as of 17:40, 9 December 2018

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