python:matplotlib:線種の設定
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
python:matplotlib:線種の設定 [2018/01/22 18:40] – [線の太さ] koudai | python:matplotlib:線種の設定 [2021/06/27 22:04] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 6: | Line 6: | ||
====== 基本的な使い方 ====== | ====== 基本的な使い方 ====== | ||
- | 例えば、赤色の実線で●形のポイントをつなぎたい場合は< | + | 例えば、赤色の実線で●形のマーカーをつなぎたい場合は< |
- | -orは、左から「実線」「●形のポイント」「赤色」を意味します。 | + | -orは、左から「実線」「●形のマーカー」「赤色」を意味します。 |
+ | 指定する順番は任意です。 | ||
<file python line.py> | <file python line.py> | ||
Line 23: | Line 24: | ||
{{: | {{: | ||
- | ポイントがいらない場合は、oを消して-rとすれば赤色の実線になります。 | + | マーカーがいらない場合は、oを消して-rとすれば赤色の実線になります。 |
またrを消すと色は自動的に設定されます。 | またrを消すと色は自動的に設定されます。 | ||
- | ====== ライン、ポイントと色の種類 | + | ===== ライン、マーカーと色の種類 ===== |
- | ===== ラインの種類 | + | ==== ラインの種類 ==== |
ラインの種類は次のとおり用意されています。 | ラインの種類は次のとおり用意されています。 | ||
Line 53: | Line 54: | ||
{{: | {{: | ||
- | ===== ポイントの種類 | + | ==== マーカーの種類 ==== |
- | ポイントの種類は次のとおり用意されています。 | + | マーカーの種類は次のとおり用意されています。 |
<file python points.py> | <file python points.py> | ||
Line 95: | Line 96: | ||
{{: | {{: | ||
- | ===== 色の種類 | + | ==== 色の種類 ==== |
|b|青 (Blue)| | |b|青 (Blue)| | ||
Line 107: | Line 108: | ||
- | ====== | + | |
+ | |||
+ | |||
+ | |||
+ | ====== | ||
線の太さはlinewidthあるいはlwで指定します。 | 線の太さはlinewidthあるいはlwで指定します。 | ||
<file python> | <file python> | ||
- | plt.plot(x, y, linewidth=2) | + | plt.plot(x, y, " |
</ | </ | ||
- | ====== | + | ====== |
+ | |||
+ | マーカーの大きさはmarkersizeあるいはmsで指定します。 | ||
+ | |||
+ | <file python> | ||
+ | plt.plot(x, y, " | ||
+ | </ | ||
+ | |||
+ | |||
+ | ====== 色 ====== | ||
色を細かく指定する場合はcolorあるいはcで指定します。 | 色を細かく指定する場合はcolorあるいはcで指定します。 | ||
Line 150: | Line 164: | ||
plt.plot(x, y, color=0.5) | plt.plot(x, y, color=0.5) | ||
</ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ======= 参考 ======= | ||
+ | |||
+ | * http:// | ||
+ | * plt.plotのすべての機能について解説しています。 | ||
+ |
python/matplotlib/線種の設定.1516614044.txt.gz · Last modified: 2021/06/27 21:59 (external edit)