ホームページ  >  記事  >  バックエンド開発  >  Matplotlib の 3 番目の変数の値によって散布マーカーに色を付けるにはどうすればよいですか?

Matplotlib の 3 番目の変数の値によって散布マーカーに色を付けるにはどうすればよいですか?

Patricia Arquette
Patricia Arquetteオリジナル
2024-11-15 10:54:02328ブラウズ

How Can I Color Scatter Markers by Values of a Third Variable in Matplotlib?

Coloring Scatter Markers by Values of a Third Variable

In matplotlib, scatterplots can be used to visualize relationships between data points. To add more depth to these plots, points can be shaded according to a third variable. Below is a straightforward approach for achieving this.

The code snippet below demonstrates how to create a scatterplot where points are shaded according to a third variable:

plt.scatter(w, M, c=p, marker='s')

Here, w and M represent data points, while p signifies the variable used for shading.

To display the plot in grayscale, remove the color specification and utilize a grayscale colormap:

import matplotlib.pyplot as plt

# Generate data...
x = np.random.random(10)
y = np.random.random(10)

# Plot...
plt.scatter(x, y, c=y, s=500)
plt.gray()

plt.show()

This code uses the plt.gray() method to automatically assign grayscale values to the points.

Alternatively, one can specify a specific grayscale colormap through the cmap keyword argument in scatter. The options include 'gray', 'gist_yarg', 'binary', and others. The reversed version of a colormap can be chosen by adding "_r" to its name.

plt.scatter(x, y, c=y, s=500, cmap='gray')

以上がMatplotlib の 3 番目の変数の値によって散布マーカーに色を付けるにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

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