Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
関数 scatter
scatter(
table: 'wandb.Table',
x: 'str',
y: 'str',
title: 'str' = '',
split_table: 'bool' = False
) → CustomChart
wandb.Table のデータから散布図を作成します。
引数:
table: 可視化するデータを含む W&B Table。
x: x軸に使用する列の名。
y: y軸に使用する列の名。
title: 散布図のタイトル。
split_table: 表を W&B UI の別のセクションに分けて表示するかどうか。True の場合、表は “Custom Chart Tables” という名前のセクションに表示されます。デフォルトは False です。
戻り値:
CustomChart: W&B にログできるカスタムチャートオブジェクト。チャートをログするには、これを wandb.log() に渡します。
例:
import math
import random
import wandb
# 時間経過に伴う異なる高度での気温変化をシミュレート
data = [
[i, random.uniform(-10, 20) - 0.005 * i + 5 * math.sin(i / 50)]
for i in range(300)
]
# 高度 (m) と気温 (°C) の列を持つ W&B の表を作成
table = wandb.Table(data=data, columns=["altitude (m)", "temperature (°C)"])
# W&B の run を初期化し、散布図をログする
with wandb.init(project="temperature-altitude-scatter") as run:
# 散布図を作成してログする
scatter_plot = wandb.plot.scatter(
table=table,
x="altitude (m)",
y="temperature (°C)",
title="Altitude vs Temperature",
)
run.log({"altitude-temperature-scatter": scatter_plot})