ホームページ >バックエンド開発 >Python チュートリアル >Matplotlib 散布図でホバリング注釈を作成する方法

Matplotlib 散布図でホバリング注釈を作成する方法

Mary-Kate Olsen
Mary-Kate Olsenオリジナル
2025-01-01 08:54:10472ブラウズ

How to Create Hovering Annotations in Matplotlib Scatter Plots?

Matplotlib 散布図のホバリング注釈

散布図を分析する場合、個々の点に関連付けられた特定のデータを表示すると便利です。ホバー上に表示される注釈を追加することで、外れ値やその他の注目すべき点をすばやく識別できます。

実装

Matplotlib の注釈機能を使用して、インタラクティブな作成を行うことができます。カーソルが特定の点の近くにあるときにのみ表示される注釈。次のコードは、このアプローチを示しています。

import matplotlib.pyplot as plt
import numpy as np

# Generate random scatter plot data
x = np.random.rand(15)
y = np.random.rand(15)
names = np.array(list("ABCDEFGHIJKLMNO"))

# Create scatter plot and annotation
fig, ax = plt.subplots()
sc = plt.scatter(x, y, c=np.random.randint(1, 5, size=15), s=100)
annot = ax.annotate("", xy=(0, 0), xytext=(20, 20), textcoords="offset points",
                    bbox=dict(boxstyle="round", fc="w"),
                    arrowprops=dict(arrowstyle="->"))
annot.set_visible(False)

# Define hover function to update annotation
def hover(event):
    # Check if hover is within axis and over a point
    if event.inaxes == ax and annot.get_visible():
        cont, ind = sc.contains(event)
        if cont:
            # Update annotation with point data
            pos = sc.get_offsets()[ind["ind"][0]]
            annot.xy = pos
            text = "{}, {}".format(" ".join(list(map(str, ind["ind"]))),
                                   " ".join([names[n] for n in ind["ind"]]))
            # Show annotation and update figure
            annot.set_text(text)
            annot.set_visible(True)
            fig.canvas.draw_idle()
        else:
            # Hide annotation
            annot.set_visible(False)
            fig.canvas.draw_idle()

# Connect hover event to function
fig.canvas.mpl_connect("motion_notify_event", hover)

plt.show()

散布図内のさまざまな点にカーソルを置くと、注釈が表示され、関連するデータが表示されます。これにより、永続的なラベルでプロットが乱雑になることなく、重要な情報にすばやくアクセスできます。 .

以上がMatplotlib 散布図でホバリング注釈を作成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。