コンピューター– category –
-
棒グラフの色を条件によって変える3つの方法 [matplotlib]
matplotlibの棒グラフで、値によって色を変える方法を紹介します。 基本の色をつける方法 棒グラフAxes.barまたはAxes.barh関数で色を指定する方法は、次の2通りがあります。(pyplotでも同じです。) color引数にcolorまたはcolorのリストで指定する方法 関数の返り値であるpatches.Rectangleインスタンスにset_color()関数で指定する方法 colorを一つ指定する import numpy as np import matplotlib.pyplot as plt X = np.arange(10) Y = np.random.uniform(0, 10, 10) fig, ax = plt.subplots() rect = ax.bar(X,... -
棒グラフの様々な描き方 [matplotlib]
matplotlibでさまざまな棒グラフを描く方法を紹介します。 この記事の環境 # Google Colaboratory import matplotlib matplotlib.__version__ # '3.2.2' import numpy numpy.__version__ # '1.19.5' 棒グラフの基本形 縦棒グラフ Axes.bar(x, height)、またはpyplot.bar(x, height)を使うと棒グラフを表示できます。 Axes.bar(x, height) import numpy as np import matplotlib.pyplot as plt X = np.arange(10) #[0, 1, 2, ..., 9] Y = np.random.uniform(1, 10, 10) #1~10で一様に分布した乱数 ... -
線なしでplotする8つの方法。[matplotlib]
matplotlibで、線をつけずにplotする8つの方法を紹介します。 線なしでplotする方法 概要 次のいずれかの方法で線を消せます。 ax.plot(X, Y, linestyle='') ax.plot(X, Y, linewidth=0) ax.scatter(X, Y) Playgrounds Google Colab - matplotlib-without-line.ipynb Gist - matplotlib-without-line.ipynb 詳細 次の図のようにmatplotlibで、線をつけずにプロットするには、次の方法があります。 plotの引数に指定する方法 linestyle='None' linewidth=0 プロットスタイルをStringで指定: plot(x, y, 'o') plot後... -
How to avoid the “0” discovered URLs bug in Search Console
"0" discovered URLs problem on loading the sitemaps will occur under certain conditions, which seems to be a bug in Google Search Console. I will show you how to avoid the bug and successfully fetch the sitemap. Detailed situation of 0 discovered URLs In the "Sitemaps" page of the Google Search Console, "Total discovered URLs" remains 0 even after waiting for several months, as shown below. I met with the problem of "0"detected URL, when I created a sitemap using Google XM...