vault backup: 2023-05-13 12:10:20

This commit is contained in:
2023-05-13 12:10:20 +08:00
parent 36143a48c5
commit a8a80c8f3c
2 changed files with 26 additions and 9 deletions

View File

@@ -34,9 +34,21 @@
},
"pinned": true
}
},
{
"id": "a4bd0e4c3fda45c7",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "04. Programming/Python/matplotlib.md",
"mode": "source",
"source": true
}
}
}
],
"currentTab": 1
"currentTab": 2
}
],
"direction": "vertical"
@@ -65,7 +77,7 @@
"state": {
"type": "search",
"state": {
"query": "lapla",
"query": "matplot",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@@ -102,7 +114,7 @@
"state": {
"type": "backlink",
"state": {
"file": "00. Inbox/01. TODO.md",
"file": "00. Inbox/Habit Tracker.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -127,7 +139,7 @@
"state": {
"type": "outline",
"state": {
"file": "00. Inbox/01. TODO.md"
"file": "00. Inbox/Habit Tracker.md"
}
}
},
@@ -178,11 +190,13 @@
"periodic-notes:Open today": false
}
},
"active": "3b4577823cedf427",
"active": "f69acad103e7f817",
"lastOpenFiles": [
"00. Inbox/00. Inbox.md",
"04. Programming/Python/argparse.ArgumentParser.md",
"00. Inbox/01. TODO.md",
"01. 個人/01. Daily/2023-05-11(週四).md",
"01. 個人/01. Daily/2023-05-12(週五).md",
"00. Inbox/01. TODO.md",
"00. Inbox/Habit Tracker.md",
"00. Inbox/餐廳收集.md",
"01. 個人/01. Daily/2023-05-10(週三).md",
@@ -193,7 +207,6 @@
"05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"00. Inbox/想要的鏡頭/鏡頭比較列表.md",
"00. Inbox/Router port forwarding.md",
"00. Inbox/00. Inbox.md",
"attachments/Pasted image 20230504183452.png",
"attachments/Pasted image 20230504183439.png",
"02. 工作/01. Logitech/ME.md",
@@ -207,7 +220,6 @@
"01. 個人/01. Daily/2023/2023年度目標.md",
"01. 個人/01. Daily/2023/04/2023-04-16(週日).md",
"00. Inbox/想要的鏡頭/變焦/TAMRON 17-70mm F2.8 DiIII-A VC.md",
"00. Inbox/想要的鏡頭/定焦/Fujifilm XF18mm F1.4 R LM WR.md",
"00. Inbox/想要的鏡頭/變焦",
"00. Inbox/想要的鏡頭/定焦",
"00. Inbox/想要的鏡頭",

View File

@@ -52,3 +52,8 @@ ax.annotate(
)
```
官方說明:[matplotlib.axes.Axes.annotate — Matplotlib 3.7.1](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.annotate.html)
## 在X軸上畫一個範圍
```python
plt.gca().axvspan(startXPos, endXPos, alpha=0.2, color='red')
```