用法:
classmethod from_dataframe(dataframe)
從 cudf.DataFrame/dask_cudf.DataFrame (zero-copy 參考) 創建一個 cuxfilter.DataFrame
- dataframe_location: cudf.DataFrame or dask_cudf.DataFrame:
- cuxfilter.DataFrame 對象
參數:
返回:
例子:
從 cudf.DataFrame/dask_cudf.DataFrame 讀取數據幀
>>> import cuxfilter >>> import cudf >>> cudf_df = cudf.DataFrame( >>> { >>> 'key': [0, 1, 2, 3, 4], >>> 'val':[float(i + 10) for i in range(5)] >>> } >>> ) >>> cux_df = cuxfilter.DataFrame.from_dataframe(cudf_df)
相關用法
- Python cuxfilter.dataframe.DataFrame.from_arrow用法及代碼示例
- Python cuxfilter.dataframe.DataFrame.dashboard用法及代碼示例
- Python cuxfilter.dataframe.DataFrame.load_graph用法及代碼示例
- Python cuxfilter.dashboard.DashBoard.add_charts用法及代碼示例
- Python cuxfilter.dashboard.DashBoard.preview用法及代碼示例
- Python cuxfilter.dashboard.DashBoard用法及代碼示例
- Python cuxfilter.dashboard.DashBoard.app用法及代碼示例
- Python cuxfilter.dashboard.DashBoard.export用法及代碼示例
- Python cuxfilter.dashboard.DashBoard.show用法及代碼示例
- Python cuxfilter.charts.datashader.heatmap用法及代碼示例
- Python cuxfilter.charts.panel_widgets.int_slider用法及代碼示例
- Python cuxfilter.charts.datashader.line用法及代碼示例
- Python cuxfilter.charts.panel_widgets.float_slider用法及代碼示例
- Python cuxfilter.charts.panel_widgets.multi_select用法及代碼示例
- Python cuxfilter.charts.datashader.graph用法及代碼示例
- Python cuxfilter.charts.bokeh.bar用法及代碼示例
- Python cuxfilter.charts.panel_widgets.card用法及代碼示例
- Python cuxfilter.charts.panel_widgets.date_range_slider用法及代碼示例
- Python cuxfilter.charts.panel_widgets.range_slider用法及代碼示例
- Python cuxfilter.charts.datashader.scatter用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cuxfilter.dataframe.DataFrame.from_dataframe。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。