swat.cas.table.CASTable.from_dict¶
-
classmethod
CASTable.
from_dict
(connection, data, casout=None, **kwargs)¶ Create a CASTable from a dictionary
- Parameters
- connectionCAS
The CAS connection to read the data into.
- datadict
The dictionary containing the data.
- casoutstring or CASTable, optional
- The output table specification. This includes the following parameters.
- namestring, optional
Name of the output CAS table.
- caslibstring, optional
CASLib for the output CAS table.
- labelstring, optional
The label to apply to the output CAS table.
- promoteboolean, optional
If True, the output CAS table will be visible in all sessions.
- replaceboolean, optional
If True, the output CAS table will replace any existing CAS. table with the same name.
- **kwargskeyword arguments
Keyword arguments sent to pandas.DataFrame.from_dict().
- Returns
See also