用法:
panel_widgets.float_slider(width=400, height=40, data_points=None, step_size=None, **params)
cuxfilter 仪表板导航栏中的小部件。
类型:浮点数滑块
- x: str:
gpu DataFrame 中的列名
- width: int, default 400:
- height: int, default 40:
- data_points: int, default None:
当 None 时,表示没有提供自定义数量的 bin,data_points 将默认为 df[self.x].nunique()
- step_size: float, default float((max - min)/datapoints):
- **params:
要传递给函数的附加参数。有关更多信息,请参阅面板文档
参数:
import cudf from cuxfilter import charts, DataFrame cux_df = DataFrame.from_dataframe(cudf.DataFrame({'key': [0, 0.5, 1, 1.5, 2], 'val':[float(i + 10) for i in range(5)]})) float_slider = charts.float_slider('key', step_size=0.5) d = cux_df.dashboard([float_slider]) float_slider.view()
相关用法
- Python cuxfilter.charts.panel_widgets.int_slider用法及代码示例
- Python cuxfilter.charts.panel_widgets.multi_select用法及代码示例
- Python cuxfilter.charts.panel_widgets.card用法及代码示例
- Python cuxfilter.charts.panel_widgets.date_range_slider用法及代码示例
- Python cuxfilter.charts.panel_widgets.range_slider用法及代码示例
- Python cuxfilter.charts.panel_widgets.drop_down用法及代码示例
- Python cuxfilter.charts.datashader.heatmap用法及代码示例
- Python cuxfilter.charts.datashader.line用法及代码示例
- Python cuxfilter.charts.datashader.graph用法及代码示例
- Python cuxfilter.charts.bokeh.bar用法及代码示例
- Python cuxfilter.charts.datashader.scatter用法及代码示例
- Python cuxfilter.charts.datashader.stacked_lines用法及代码示例
- Python cuxfilter.charts.bokeh.line用法及代码示例
- 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.dataframe.DataFrame.from_dataframe用法及代码示例
- Python cuxfilter.dataframe.DataFrame.from_arrow用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cuxfilter.charts.panel_widgets.float_slider。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。