swat.CAS.read_csv
- CAS.read_csv(filepath_or_buffer, casout=None, **kwargs)
 Read CSV file into a CAS table
This method calls pandas.read_csv() with the given arguments, then uploads the resulting pandas.DataFrame to a CAS table.
- Parameters:
 - filepath_or_bufferstr or any object with a read() method
 Path, URL, or buffer to read.
- 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.
- **kwargsany, optional
 Keyword arguments to pandas.read_csv().
- Returns:
 - CASTable
 
See also
Notes
Paths to specified files point to files on the client machine.
Examples
>>> conn = swat.CAS() >>> tbl = conn.read_csv('iris.csv') >>> print(tbl.head())