swat.cas.table.CASTable.from_records

classmethod CASTable.from_records(connection, data, casout=None, **kwargs)

Create a CASTable from records

Parameters:
connection : CAS

The CAS connection to read the data into.

data : numpy.ndarray(), list-of-tuples, dict, or pandas.DataFrame

The data to upload.

casout : string or CASTable, optional
The output table specification. This includes the following parameters.
name : string, optional

Name of the output CAS table.

caslib : string, optional

CASLib for the output CAS table.

label : string, optional

The label to apply to the output CAS table.

promote : boolean, optional

If True, the output CAS table will be visible in all sessions.

replace : boolean, optional

If True, the output CAS table will replace any existing CAS. table with the same name.

**kwargs : keyword arguments

Keyword arguments sent to pandas.DataFrame.from_records().

Returns:
CASTable