plot opなし → axes(引数だけで決まる op —— 画像やデータの入力を取らない)import fullseye as fs; fs.ledger.axes_transform(rect, xlim, ylim, invert_y=True, xscale='linear', yscale='linear') (実装を直接呼ぶなら import annotate; annotate.axes_transform(rect, xlim, ylim, invert_y=True, xscale='linear', yscale='linear')、台帳から引くなら opsannotate.get("axes_transform"))データ座標 → 画素座標の対応(閉形式)を作る。
row は下向き という画像の事実と、y は上向き というグラフの慣習の
ずれを、この 1 か所だけで吸収する。図のコードはこの辞書を持ち回る。
px = x0 + (x - xmin)/(xmax - xmin) * (w - 1)
py = y0 + (h - 1) - (y - ymin)/(ymax - ymin) * (h - 1) # invert_y
rect : (x, y, w, h)
描画域(左上基準、画素)。
xlim, ylim : (lo, hi)
データ範囲。lo == hi は傾きが無限大になるので ValueError。
lo > hi(反転軸)も許す ―― 深度やランクを上下逆に描くため。
invert_y : bool
True(既定)なら ylim[0] が下端に来る = 普通のグラフ。
False なら画像そのままの向き(上端が ylim[0])。
xscale, yscale : {‘linear’,’log’}
'log' は常用対数。範囲に 0 以下が入れば ValueError
(log 軸に 0 を渡して -inf を「端」として描く図は嘘になる)。
dict
{"rect", "xlim", "ylim", "invert_y", "xscale", "yscale"}。
ValueError 矩形が不正、範囲が非有限か幅ゼロ、w か h が 2 未満、 未知の scale、log 軸で範囲に 0 以下。
py -3.11 examples/annotate_gallery.pypy -3.11 examples/annotate_paper_tour.pyaxes を入力に取れる)data_to_pixel · axes_frame · grid_lines · ticks · plot_series
plot)data_to_pixel · nice_ticks · axes_frame · grid_lines · ticks · plot_series
Provenance: annotate.py — ANNOTATE operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.