Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the all-in-one-seo-pack domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the easy-fancybox domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the urvanov-syntax-highlighter domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the breadcrumb-navxt domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the advanced-ads domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: 関数 _load_textdomain_just_in_time が誤って呼び出されました。lancr ドメインの翻訳の読み込みが早すぎました。これは通常、プラグインまたはテーマの一部のコードが早すぎるタイミングで実行されていることを示しています。翻訳は init アクション以降で読み込む必要があります。 詳しくは WordPress のデバッグをご覧ください。 (このメッセージはバージョン 6.7.0 で追加されました) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114
matplotlib 自作カラーマップを作る方法 | 診療放射線技師がPythonをはじめました。

matplotlib 自作カラーマップを作る方法

こんにちは、でめきんです。

matplotlibを使ってカラー表示をする際、既存のカラーマップでは満足がいかないことがあると思います。

そんな時は自作でカラーマップを作ってしまおうというのが今回の企画です。


準備

カラーマップ表示するには、どの値からどの値までを、どの様な区切りで表示するか考えます。

その後、その区切りをどの色で表示するか決めます。

今回は0~99までの値を10区切りで、色を

[ black , lightgrey , darkorange , gole , chartreuse , palegreen , mediumspringgreen , paleturquoise , steelblue , navy ]

上記10色で表示してみたいと思います。

matplotlibのカラー表示はここで確認できます。



広告
デル株式会社

seaborn

今回はseabornのヒートマップを用いて確認をしてみます。

ちなみに、seabornはデータの可視化をmatplotlibよりも強力にサポートしてくれるライブラリーです。

今回提示するヒートマップもseabornならではの機能です。

seabornはmatplotlibと違うライブラリーかと思われるかもしれませんが、実は内部ではmatplotlibが動いているらしいです。

もちろん、カラーマップの設定はmatplotlibでも利用できますのでご安心を。


広告
HP Directplus -HP公式オンラインストア-

等間隔で色を付けたい場合

色を指定します。先ほども提示しましたが再度掲示します。

ここで注意していただきたいので色の名前はシングルコーテーション「 ‘ 」で囲う必要があります。

それでは、コードを提示します。

きちんと10間隔で設定した色通りに表示されています。

等間隔で色を変えたい場合はこれでいいのですが、例えば40~60の間だけ色を変えたい場合はこれではうまくいきません。


広告
BTOパソコン・パソコン関連商品がお買い得!パソコン工房のセール

等間隔ではなく、特定の区間だけ色を変えたい場合

ある領域だけ色を変えたい場合はまず色分けする領域を指定する必要があります。

30~70の間だけを5づつ色を付けたい場合、まず色の指定範囲を以下のように設定します。

ただ、これだけだと範囲と色の組み合わせができていません。

なので「BoundaryNorm」という関数を使って紐づけしてあげます。

ちなみに、cmapの後の「 .N 」とはboundsとcmapに対応させる意味があるらしいです。これが無いとエラーになります。

そして、これを画像設定axの中に組み込んでいきます。

コード全体としては


matplotlibではどうする?

ax1 = sns.heatmap(arr, annot=True, cbar=True, cmap=cmap, norm=norm)

の部分を以下に変更すれば完了です。

ax1.imshow(arr, cmap=cmap, norm=norm)

なお、matplotlibで値を表示する機能は標準ではないと思われますので、もし値を表示したい方はseabornを用いた方が簡便でいいかと思われます。


お疲れ様でした。

広告
上新電機 パソコン買取サービス

Categories:

,