Read a federated table

更新时间:
复制 MD 格式

This topic describes the API for reading a saved federated table and provides an example.

Important

All placeholders in the API, such as "$df0", must be enclosed in single or double quotation marks.

Function path

fascia.biz.api.dataframe.read_fed_table

Function definition

def read_fed_table(fed_table) -> HDataFrame:

Parameters

fed_table: The federated table to read. This corresponds to the federated table placeholder in the input configuration.

Example

from fascia.biz.api.dataframe import read_fed_table
df = read_fed_table('$df0')

Return value definition

The return value is a federated table object.