swat.CAS.read_html¶
-
CAS.
read_html
(self, io, casout=None, **kwargs)¶ Read HTML tables into a list of CASTable objects
This method calls pandas.read_html() with the given arguments, then uploads the resulting pandas.DataFrame to a CAS table.
- Parameters
- iostring or file-like object
The path, URL, or file object that contains the HTML 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.
- **kwargsany, optional
Keyword arguments to pandas.read_html().
- Returns
- CASTable
See also
Examples
>>> conn = swat.CAS() >>> tbl = conn.read_html('iris.html') >>> print(tbl.head())