Write a file in FIAT format. This class represents an open file, and
you call member functions to write data into the file. This automatically
generates much of the header information.
|
|
|
|
|
header(self,
k,
v)
Add a single key=value line to the header of the data
file. |
source code
|
|
|
|
__init__(self,
fd,
sep='\t',
blank='%na')
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
datavec(self,
vector,
numeric=False)
This assumes that you've already called add_cols() to set the column
names. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|