各種目盛りフォーマッタ
メモ
各種目盛りフォーマッタ 一覧
クラス | |
---|---|
ticker. | Formatter【フォーマッタ (基本)】 |
EngFormatter【フォーマッタ (工学)】3.1 | |
FixedFormatter【フォーマッタ (固定)】 | |
FormatStrFormatter【フォーマッタ (旧フォーマット文字列)】 | |
FuncFormatter【フォーマッタ (ユーザー定義関数)】 | |
IndexDateFormatter 3.33.5 | |
IndexFormatter 3.33.5 | |
LogFormatter【対数フォーマッタ (基本)】 | |
LogFormatterExponent【対数フォーマッタ (指数)】 | |
LogFormatterMathtext | |
LogFormatterSciNotation | |
LogitFormatter | |
NullFormatter【フォーマッタ (ヌル)】 | |
OldScalarFormatter 3.33.5 | |
PercentFormatter【フォーマッタ (パーセント)】 | |
ScalarFormatter【フォーマッタ (スカラー)】3.1 / 3.3 / 3.4 | |
StrMethodFormatter【フォーマッタ (新フォーマット文字列)】 | |
dates. | AutoDateFormatter【日付フォーマッタ (自動)】 |
ConciseDateFormatter【日付フォーマッタ (簡潔)】3.1 | |
DateFormatter【日付フォーマッタ】 | |
category. | StrCategoryFormatter |
関連
外部リンク
Formatter【フォーマッタ (基本)】
メモ
- 各種フォーマッタの親クラス
関連
外部リンク
構文
class matplotlib.ticker.Formatter( )
属性 | 備考 |
---|---|
locs | (デフォルト:[ ]) |
メソッド | 備考 |
__call__(x, pos=None) | 継承クラスでオーバーライド |
static fix_minus(s) | |
format_data(value) | |
format_data_short(value) | |
format_ticks(values) 3.1 | |
get_offset() | |
set_locs(locs) |
EngFormatter【フォーマッタ (工学)】3.1
メモ
- 工学フォーマッタ
- 1000 の累乗をプレフィックスと単位で表現 (ENG_PREFIXES 定義)
10N プレフィックス -24 'y' -21 'z' -18 'a' -15 'f' -12 'p' -9 'n' -6 'µ' -3 'm' 0 '' 3 'k' 6 'M' 9 'G' 12 'T' 15 'P' 18 'E' 21 'Z' 24 'Y'
- 1000 の累乗をプレフィックスと単位で表現 (ENG_PREFIXES 定義)
関連
外部リンク
構文
class matplotlib.ticker.EngFormatter(unit='', places=None, sep=' ', *3.1, usetex3.1 =None, useMathText3.1 =None)
unit (str)単位記号 ('Hz'・'m' 等)
places (int)小数点以下の桁数 (1 ~ 3 / 省略:0~5 自動)
sep (str値と単位の間のセパレータ (以下の指定可)
'' (空文字列):セパレータなし
'\N{THIN SPACE}':細いスペース (U+2009)
'\N{NARROW NO-BREAK SPACE}':細い改行なしスペース (U+202F)
'\N{NO-BREAK SPACE}':改行なしスペース (U+00A0)
以下キーワード引数 3.1
usetex (bool)3.1TeX 数学モードの使用有無 (デフォルト:False rcParams["text.usetex"])
useMathText (bool)3.1数学フォーマットの使用有無 (デフォルト:False rcParams["axes.formatter.use_mathtext"])
属性 | 備考 |
---|---|
ENG_PREFIXES | プレフィックス (メモ参照) |
useMathText | |
usetex | |
メソッド | 備考 |
format_eng(num) | |
get_useMathText() | |
get_useMathText() | |
set_useMathText(val) | |
set_usetex(val) |
例
FixedFormatter【フォーマッタ (固定)】
メモ
- 固定フォーマッタ
- ticker.FixedLocator の使用が必要
関連
外部リンク
構文
class matplotlib.ticker.FixedFormatter(seq)
seqラベル文字列のシーケンス
メソッド | 備考 |
---|---|
get_offset() | |
set_offset_string(ofs) |
例
FormatStrFormatter【フォーマッタ (旧フォーマット文字列)】
メモ
- 旧フォーマット文字列指定のフォーマッタ
関連
外部リンク
構文
class matplotlib.ticker.FormatStrFormatter(fmt)
fmtフォーマット文字列 (旧スタイル:値に対して % 使用)
例
FuncFormatter【フォーマッタ (ユーザー定義関数)】
メモ
- ユーザー定義関数指定のフォーマッタ
関連
外部リンク
構文
class matplotlib.ticker.FuncFormatter(func)
funcユーザー定義関数 (下記参照)
引数 | 備考 |
---|---|
x | 目盛り値 |
pos | 位置 |
戻り値 | |
目盛りラベル |
メソッド | 備考 |
---|---|
get_offset() | |
set_offset_string(ofs) |
例
NullFormatter【フォーマッタ (ヌル)】
メモ
- ヌルフォーマッタ
- 空文字列を返却する為、目盛りなし
関連
外部リンク
構文
class matplotlib.ticker.NullFormatter( )
例
PercentFormatter【フォーマッタ (パーセント)】
メモ
- パーセント フォーマッタ
- パーセンテージ (%) で表現
関連
外部リンク
構文
class matplotlib.ticker.PercentFormatter(xmax=100, decimals=None, symbol='%', is_latex=False)
xmax (float)100% に対応するデータ値
decimals (None | int)小数点以下の桁数 (省略:自動設定)
symbol (str | None)パーセンテージのシンボル
is_latex (bool)LaTeXの使用有無 (rcParams["text.usetex"] False:symbol (シンボル)内のLaTeX予約文字をエスケープ)
属性 | 備考 |
---|---|
symbol | |
メソッド | 備考 |
convert_to_pct(x) | |
format_pct(x, display_range) |
例
ScalarFormatter【フォーマッタ (スカラー)】3.1 / 3.3 / 3.4
メモ
- スカラー フォーマッタ
- デフォルトのフォーマッタ
関連
外部リンク
構文
class matplotlib.ticker.ScalarFormatter(useOffset=None, useMathText=None, useLocale=None)
useOffset (bool | float)オフセットの使用有無 (省略:True rcParams["axes.formatter.useoffset"])
useMathText (bool)数学フォーマットの使用有無
True:10N 形式
False:1eN 形式 (デフォルト:rcParams["axes.formatter.use_mathtext"])
useLocale (bool)ロケール設定の使用有無 (省略:False rcParams["axes.formatter.use_locale"])
属性 | 備考 |
---|---|
useLocale | |
useMathText | |
useOffset | |
メソッド | 備考 |
format_data(value) | |
format_data_short(value) | |
get_offset() | |
get_useLocale() | |
get_useMathText() | |
get_useOffset() | |
pprint_val() 3.13.3 | |
set_locs(locs) | |
set_powerlimits(lims) | |
set_scientific(b) | |
set_useLocale(val) | |
set_useMathText(val) | |
set_useOffset(val) |
例
StrMethodFormatter【フォーマッタ (新フォーマット文字列)】
メモ
- 新フォーマット文字列指定のフォーマッタ
関連
外部リンク
構文
class matplotlib.ticker.StrMethodFormatter(fmt)
fmtフォーマット文字列 (新スタイル:str.format 形式)
x:値 (y軸もx使用)
pos:目盛り位置