最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

matplotlib交互式數(shù)據(jù)光標(biāo)實(shí)現(xiàn)(mplcursors)

 更新時(shí)間:2021年01月13日 09:31:03   作者:mighty13  
這篇文章主要介紹了matplotlib交互式數(shù)據(jù)光標(biāo)實(shí)現(xiàn)(mplcursors),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧

簡(jiǎn)介

mplcursors包也可以為matplotlib提供交互式的數(shù)據(jù)光標(biāo)(彈出式注釋框),它的靈感來(lái)源于mpldatacursor包,可以認(rèn)為是基于mpldatacursor包的二次開(kāi)發(fā)。
相對(duì)于mpldatacursor包,mplcursors包最大的特點(diǎn)就是提供了一些相對(duì)底層的API,這樣功能實(shí)現(xiàn)更加靈活。

安裝

pip install mplcursors

基本應(yīng)用

mplcursors包的基本應(yīng)用方法與mpldatacursor包類似,直接應(yīng)用cursor函數(shù)即可。

基本操作方法

  • 鼠標(biāo)左鍵單擊圖表數(shù)據(jù)元素時(shí)會(huì)彈出文本框顯示最近的數(shù)據(jù)元素的坐標(biāo)值。
  • 鼠標(biāo)右鍵單擊文本框取消顯示數(shù)據(jù)光標(biāo)。
  • 按d鍵時(shí)切換顯示\關(guān)閉數(shù)據(jù)光標(biāo)。

案例源碼

import matplotlib.pyplot as plt
import numpy as np
import mplcursors

data = np.outer(range(10), range(1, 5))

fig, ax = plt.subplots()
lines = ax.plot(data)
ax.set_title("Click somewhere on a line.\nRight-click to deselect.\n"
       "Annotations can be dragged.")

mplcursors.cursor(lines) # or just mplcursors.cursor()

plt.show()

mplcursors自定義應(yīng)用

mpldatacursor包中自定義功能主要通過(guò)向datacursor函數(shù)傳遞實(shí)參實(shí)現(xiàn)。
mplcursors包中的cursor函數(shù)對(duì)標(biāo)mpldatacursor包中的datacursor函數(shù),但是在參數(shù)上發(fā)生了變化,保留了artistshover、bindings、multiple、highlight等類似參數(shù)。
mplcursors包增加Selection對(duì)象(底層為namedtuple)表示選擇的數(shù)據(jù)元素的屬性。
當(dāng)選中某個(gè)數(shù)據(jù)點(diǎn)時(shí),可以通過(guò)添加(add)或刪除(remove)事件觸發(fā)、注冊(cè)回調(diào)函數(shù)實(shí)現(xiàn)功能,回調(diào)函數(shù)只有一個(gè)參數(shù),及選擇的數(shù)據(jù)點(diǎn)。
在注冊(cè)回調(diào)函數(shù)時(shí),mplcursors包支持使用裝飾器。

mpldatacursor與mplcursors API對(duì)比

下面以修改顯示文本信息為例對(duì)比下mpldatacursormplcursors的不同實(shí)現(xiàn)方式。

在這里插入圖片描述

mpldatacursor實(shí)現(xiàn)方式

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

ax=plt.gca()
labels = ["a", "b", "c"]
for i in range(3):
  ax.plot(i, i,'o', label=labels[i])

datacursor(formatter='{label}'.format)
plt.show()

mplcursors實(shí)現(xiàn)方式一

import matplotlib.pyplot as plt
import numpy as np
import mplcursors

ax=plt.gca()
lines = ax.plot(range(3), range(3), "o")
labels = ["a", "b", "c"]
cursor = mplcursors.cursor(lines)
cursor.connect(
  "add", lambda sel: sel.annotation.set_text(labels[sel.target.index]))

plt.show()

mplcursors實(shí)現(xiàn)方式二

import matplotlib.pyplot as plt
import numpy as np
import mplcursors

ax=plt.gca()
lines = ax.plot(range(3), range(3), "o")
labels = ["a", "b", "c"]
cursor = mplcursors.cursor(lines)

@cursor.connect("add")
def on_add(sel):
  sel.annotation.set_text(labels[sel.target.index])
plt.show()

結(jié)論

mplcursors包實(shí)現(xiàn)的功能與mpldatacursor包非常相似。相對(duì)而言mplcursors包的API更加靈活,通過(guò)connect函數(shù)或者裝飾器自定義屬性耦合性更弱,便于實(shí)現(xiàn)繪圖與數(shù)據(jù)光標(biāo)實(shí)現(xiàn)的分離。

參考

https://mplcursors.readthedocs.io/en/stable/
https://github.com/anntzer/mplcursors

到此這篇關(guān)于matplotlib交互式數(shù)據(jù)光標(biāo)實(shí)現(xiàn)(mplcursors)的文章就介紹到這了,更多相關(guān)matplotlib交互式光標(biāo)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論

简阳市| 策勒县| 鸡东县| 高阳县| 富宁县| 昭苏县| 剑河县| 南宁市| 平乐县| 无锡市| 仪征市| 石泉县| 寻甸| 甘孜| 始兴县| 呈贡县| 麦盖提县| 游戏| 阿巴嘎旗| 福安市| 青冈县| 绥宁县| 汽车| 元江| 卓尼县| 丹江口市| 离岛区| 繁昌县| 金门县| 秦安县| 大名县| 长岭县| 西林县| 土默特左旗| 辽宁省| 锡林郭勒盟| 宁河县| 龙门县| 辉县市| 温州市| 临朐县|