Biogeme: Python Library
2.5
|
row iterators are designed to iterate on rows of the data file. More...
Public Member Functions | |
def | __init__ (self, iteratorName, name="__dataFile__", child="", variable="__rowId__") |
Public Member Functions inherited from bio_iterator.iterator | |
def | __init__ (self, iteratorName, name, child, variable) |
def | __str__ (self) |
Public Attributes | |
type | |
Public Attributes inherited from bio_iterator.iterator | |
iteratorName | |
name | |
child | |
variable | |
row iterators are designed to iterate on rows of the data file.
Examples:
Definition at line 92 of file bio_iterator.py.
def bio_iterator.rowIterator.__init__ | ( | self, | |
iteratorName, | |||
name = "__dataFile__" , |
|||
child = "" , |
|||
variable = "__rowId__" |
|||
) |
iteratorName | Name of the iterator. |
name | Name of the set of data that is being iterated. It is either the name of a metaiterator, or the string dataFile, when the iterator spans the entire database. |
child | Row iterators have no children. Use the default value. |
variable | Ignored by row iterators. Use the default value. |
Definition at line 97 of file bio_iterator.py.