datatable.Frame.to_pandas()

Convert this frame into a pandas DataFrame.

If the frame being converted has one or more key columns, those columns will become the index in the pandas DataFrame.

Parameters

return
pandas.DataFrame

Pandas dataframe of shape (nrows, ncols-nkeys).

except
ImportError

If the pandas module is not installed.