Difference between revisions of "Modeling"

From wiki
Jump to navigation Jump to search
(Created page with "Mostly based on [http://greenteapress.com/ModSimPy/ModSimPy.pdf this paper]")
 
Line 1: Line 1:
 
Mostly based on [http://greenteapress.com/ModSimPy/ModSimPy.pdf this paper]
 
Mostly based on [http://greenteapress.com/ModSimPy/ModSimPy.pdf this paper]
 +
 +
=Eyeopeners=
 +
Store results in a list.
 +
<syntaxhighlight lang=python>
 +
for a in range(100):
 +
    funcAresults[a] = functionAcall(bla,bla)
 +
    funcBresults[a] = functionBcall(bla,bla)
 +
</syntaxhighlight>
 +
 +
ModSimPy is using Series from [[Pandas]]. Don't know why yet.

Revision as of 17:34, 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. Don't know why yet.