用法:
dashboard(charts: list, sidebar: list = [], layout=<class 'cuxfilter.layouts.layouts.Layout0'>, theme=<class 'cuxfilter.themes.light.LightTheme'>, title='Dashboard', data_size_widget=True, warnings=False, layout_array=None)
创建一个 cuxfilter.DashBoard 对象
- charts: list:
cuxfilter.charts 列表
- layout: cuxfilter.layouts:
- title: str:
仪表板标题,默认 “Dashboard”
- data_size_widget: boolean:
flag 确定是否显示仪表板中选择的当前数据点,默认 True
- warnings: boolean:
用于禁用或启用与布局相关的运行时警告的标志,默认为 False
- cuxfilter.DashBoard 对象
参数:
返回:
例子:
>>> 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 >>> )
>>> # create a dashboard object >>> d = cux_df.dashboard([line_chart_1])
相关用法
- Python cuxfilter.dataframe.DataFrame.from_dataframe用法及代码示例
- Python cuxfilter.dataframe.DataFrame.from_arrow用法及代码示例
- 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.dashboard。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。