Module tf.advanced.interchange
Produce exports of the whole dataset in different formats.
Currently only pandas
is supported here,
although there is also an export to MQL elsewhere:
Functions
def interchangeApi(app)
-
Expand source code Browse git
def interchangeApi(app): """Produce the interchange functions API. Parameters ---------- app: obj The high-level API object """ app.exportMQL = types.MethodType(exportMQL, app) app.exportPandas = types.MethodType(exportPandas, app)
Produce the interchange functions API.
Parameters
app
:obj
- The high-level API object