用法:
datashader.scatter(y, x_range=None, y_range=None, add_interaction=True, color_palette=None, aggregate_col=None, aggregate_fn='count', point_size=15, point_shape='circle', pixel_shade_type='eq_hist', pixel_density=0.5, pixel_spread='dynspread', tile_provider=None, width=800, height=400, title='', timeout=100, legend=True, legend_position='top_right', **library_specific_params)
- x: str:
gpu DataFrame 中的 x 軸列名
- y: str, default None:
gpu DataFrame 中的 y 軸列名
- x_range: tuple, default(gpu_dataframe[x].min(), gpu_dataframe[x].max()):
(min, max) geo-scatter 圖中要顯示的x-dimensions
- y_range: tuple, default(gpu_dataframe[y].min(), gpu_dataframe[y].max()):
(min, max) geo-scatter 圖中要顯示的x-dimensions
- add_interaction: {True, False}, default True:
- color_palette: bokeh.palettes or list/tuple of hex_color_codes,:
或顏色名稱列表/元組,默認 bokeh.palettes.Virisdis10
- aggregate_col: str, default None:
aggregate_fn 將在其上運行的 gpu 數據幀中的列,如果沒有,aggregate_fn 將在 y-column 上運行
- aggregate_fn: {‘count’, ‘mean’, ‘max’, ‘min’}, default ‘count’:
- point_size: int, default 1:
散點圖中的點大小。
- point_shape: str, default ‘circle’:
可用選項:圓形、方形、rect_vertical、rect_horizontal。
- pixel_shade_type: str, default ‘eq_hist’:
datashader.transfer_functions.shade() 函數中的“how” 參數。可用選項:eq_hist、線性、對數、cbrt
- pixel_density: float, default 0.5:
[0, 1] 中的調整參數,值越高,散點圖越密集。
- pixel_spread: str, default ‘dynspread’:
dynspread:根據圖像密度動態擴展圖像中的像素。散布:散布圖像中的像素。
- tile_provider: str, default None:
底層Map類型。見https://holoviews.org/reference/elements/bokeh/Tiles.html
- width: int, default 800:
- height: int, default 400:
- title: str,:
圖表標題
- timeout: int (milliseconds), default 100:
確定回調將處理新事件而前一個事件沒有報告完成的超時時間。增加非常長時間運行的回調,如果縮放感覺滯後。
- legend: bool, default True:
如果為真,則添加基於 Bokeh.models.LinearColorMapper 的圖例,注意:圖例目前僅適用於 pixel_shade_type='linear'/'log'
- legend_position: str, default center:
圖例在圖表上的位置。有效位置為:右、左、下、上、top_right、top_left、
bottom_left, bottom_right
- **library_specific_params:
要傳遞給函數的附加庫特定關鍵字參數
- 一個 cudashader 散點圖。
- 鍵入 cuxfilter.charts.datashader.custom_extensions.InteractiveImage
參數:
返回:
from cuxfilter import DataFrame from cuxfilter.charts import scatter import cudf import random cux_df = DataFrame.from_dataframe(cudf.DataFrame({'x': [float(random.randrange(-8239000,-8229000)) for i in range(10000)], 'y':[float(random.randrange(4960000, 4980000)) for i in range(10000)]})) # setting pixel_shade_type='linear' to display legend (currently supports only log/linear) scatter_chart = scatter(x='x',y='y', pixel_shade_type="linear") d = cux_df.dashboard([scatter_chart]) scatter_chart.view()
相關用法
- Python cuxfilter.charts.datashader.stacked_lines用法及代碼示例
- Python cuxfilter.charts.datashader.heatmap用法及代碼示例
- Python cuxfilter.charts.datashader.line用法及代碼示例
- Python cuxfilter.charts.datashader.graph用法及代碼示例
- Python cuxfilter.charts.panel_widgets.int_slider用法及代碼示例
- Python cuxfilter.charts.panel_widgets.float_slider用法及代碼示例
- Python cuxfilter.charts.panel_widgets.multi_select用法及代碼示例
- 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.panel_widgets.drop_down用法及代碼示例
- 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.datashader.scatter。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。