我正在尝试使用matplotlib创建散点图,其中每个点都有特定的颜色值。

我缩放这些值,然后在“左”和“右”颜色之间应用alpha混合。

# initialization
from matplotlib import pyplot as plt
from sklearn.preprocessing import MinMaxScaler
import numpy as np

values = np.random.rand(1134)

# actual code
colorLeft = np.array([112, 224, 112])
colorRight = np.array([224, 112, 112])
scaled = MinMaxScaler().fit_transform(values.reshape(-1, 1))
colors = np.array([a * colorRight + (1 - a) * colorLeft for a in scaled], dtype = np.int64)
# check values here
f, [sc, other] = plt.subplots(1, 2)
sc.scatter(np.arange(len(values)), values, c = colors)


但是最后一行给出了错误:


'c'参数具有1134个元素,不适用于大小为1134的'x',大小为1134的'y'


scatter documentation表示参数c


c:颜色,序列或颜色序列,可选

标记颜色。可能的值:

  A single color format string.
  A sequence of color specifications of length n.
  A sequence of n numbers to be mapped to colors using cmap and norm.
  A 2-D array in which the rows are RGB or RGBA.



我想在最后一个选项中使用RGB值。

我用一些打印语句替换了check values here注释:

print(values)
print(colors)
print(values.shape)
print(colors.shape)


结果如下:

[0.08333333 0.08333333 0.08333333 ... 1.         1.         1.08333333]
[[112 224 112]
 [112 224 112]
 [112 224 112]
 ...
 [214 121 112]
 [214 121 112]
 [224 111 112]]
(1134,)
(1134, 3)

最佳答案

将颜色转换为0
sc.scatter(np.arange(len(values)), values, c = colors/255)

关于python - matplotlib分散失败并出现错误:'c'参数包含n个元素,这不适用于大小为n的'x',大小为n的'y',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57113398/

10-09 16:45