用法:
show(notebook_url='http://localhost:8888', port=0, threaded=False, service_proxy=None, **kwargs)
使用笔记本中的散景后端服务器运行仪表板。参数-----notebook_url:str,可选,默认localhost:8888
您要在其中以web-app 形式运行仪表板的 URL,
包括端口号。 - 如果在本地运行,可以使用 localhost 而不是 ip。
- 端口:int,
可选 - 必须是一个开放端口
- service_proxy:str,可选,默认无,
可用选项:jupyterhub
例子:
>>> import cudf >>> import cuxfilter >>> from cuxfilter.charts import bokeh >>> df = cudf.DataFrame( >>> { >>> 'key': [0, 1, 2, 3, 4], >>> 'val':[float(i + 10) for i in range(5)] >>> } >>> ) >>> cux_df = cuxfilter.DataFrame.from_dataframe(df) >>> line_chart_1 = bokeh.line( >>> 'key', 'val', data_points=5, add_interaction=False >>> ) >>> d = cux_df.dashboard([line_chart_1]) >>> d.show(url='localhost:8889')
相关用法
- Python cuxfilter.dashboard.DashBoard.add_charts用法及代码示例
- Python cuxfilter.dashboard.DashBoard.preview用法及代码示例
- Python cuxfilter.dashboard.DashBoard.app用法及代码示例
- Python cuxfilter.dashboard.DashBoard.export用法及代码示例
- Python cuxfilter.dashboard.DashBoard用法及代码示例
- Python cuxfilter.dataframe.DataFrame.from_dataframe用法及代码示例
- Python cuxfilter.dataframe.DataFrame.from_arrow用法及代码示例
- Python cuxfilter.dataframe.DataFrame.dashboard用法及代码示例
- Python cuxfilter.dataframe.DataFrame.load_graph用法及代码示例
- 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.dashboard.DashBoard.show。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。