简体   繁体   English

如何在同一图表上使用 matplotlib 到 plot 2 组 (x,y) 值作为散点 plot(由线连接)?

[英]How to use matplotlib to plot 2 sets of (x,y) values on the same graph as a scatter plot (connected by lines)?

I have two numpy arrays s1 & s2 each containing a set of (x,y) values.我有两个 numpy arrays s1 & s2 每个都包含一组 (x,y) 值。

For example例如

 ------s1-----
 [[ 0.5         0.        ]
 [ 0.5         0.28284271]
 [ 0.48        0.56568542]
 [ 0.44        0.83721443]
 [ 0.3808      1.08611602]
 [ 0.304       1.30152903]
 [ 0.211968    1.47349739]
 [ 0.107776    1.5934046 ]
 [-0.00489472  1.65437192]
 [-0.12187648  1.65160304]
 [-0.23866245  1.5826593 ]
 [-0.35057336  1.44765143]
 [-0.45293778  1.24933718]
 [-0.54127926  0.99311688]
 [-0.61150322  0.6869231 ]
 [-0.66007602  0.34100464]
 [-0.68418869 -0.03239075]
 [-0.68189832 -0.41942632]
 [-0.6522404  -0.80516626]
 [-0.59530655 -1.17412915]
 [-0.51228308 -1.51088539]]

-----s2----
[[-0.5         0.        ]
 [-0.5         0.28284271]
 [-0.52        0.56568542]
 [-0.56        0.83721443]
 [-0.6192      1.08611602]
 [-0.696       1.30152903]
 [-0.788032    1.47349739]
 [-0.892224    1.5934046 ]
 [-1.00489472  1.65437192]
 [-1.12187648  1.65160304]
 [-1.23866245  1.5826593 ]
 [-1.35057336  1.44765143]
 [-1.45293778  1.24933718]
 [-1.54127926  0.99311688]
 [-1.61150322  0.6869231 ]
 [-1.66007602  0.34100464]
 [-1.68418869 -0.03239075]
 [-1.68189832 -0.41942632]
 [-1.6522404  -0.80516626]
 [-1.59530655 -1.17412915]
 [-1.51228308 -1.51088539]]

I want to plot the x and y values of these arrays such that I get something like this:我想 plot 这些 arrays 的 x 和 y 值,这样我得到这样的东西:

在此处输入图像描述 With s1 in Blue and s2 in Red.蓝色为 s1,红色为 s2。

The code snippet I implemented looked something like this我实现的代码片段看起来像这样

import matplotlib.pyplot as plt

.
.
.
.

plt.scatter(s1[:][0],s1[:][1],'-o',color='b')
plt.scatter(s2[:][0],s2[:][1],'-x',color='r')
plt.grid(True)
plt.xlabel("x") 
plt.ylabel("y")
plt.show()

I get an error saying:我收到一条错误消息:


  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\pyplot.py", line 2890, in scatter
    __ret = gca().scatter(

  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\__init__.py", line 1438, in inner
    return func(ax, *map(sanitize_sequence, args), **kwargs)

  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\cbook\deprecation.py", line 411, in wrapper
    return func(*inner_args, **inner_kwargs)

  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\axes\_axes.py", line 4488, in scatter
    collection = mcoll.PathCollection(

  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\collections.py", line 955, in __init__
    self.set_sizes(sizes)

  File "C:\Users\Acer\anaconda3\lib\site-packages\matplotlib\collections.py", line 922, in set_sizes
    scale = np.sqrt(self._sizes) * dpi / 72.0 * self._factor

TypeError: ufunc 'sqrt' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''

I don't get what went wrong since there is no sqrt in the scatter values and s1 and s2 are float arrays anyway.我不明白出了什么问题,因为散点值中没有 sqrt 并且 s1 和 s2 无论如何都是浮动 arrays 。

You have 2 problems here:你在这里有两个问题:

1: You're using the syntax for plt.plot rather than plt.scatter so the third argument is being interpreted as a number for the marker size . 1:您使用的是plt.plot而不是plt.scatter的语法,因此第三个参数被解释为标记大小的数字。 If you want to connect the points you should use plt.plot .如果要连接点,则应使用plt.plot

2a: Assuming s1 and s2 are numpy.ndarray objects you include all indices in the square brackets and seperatre them with commas. 2a:假设s1s2numpy.ndarray对象,您将所有索引包含在方括号中并用逗号分隔它们。

#import numpy as np
#import matplotlib.pyplot as plt
s1 = np.array(s1)
s2 = np.array(s2)

plt.plot(s1[:,0],s1[:,1],'-o',color='b')
plt.plot(s2[:,0],s2[:,1],'-x',color='r')
plt.grid(True)
plt.xlabel("x") 
plt.ylabel("y")
plt.show()

2b: If however, they are lists of lists , you need to construct lists from the first/second element of each member list. 2b:但是,如果它们是列表列表,则需要从每个成员列表的第一个/第二个元素构造列表。 s1[:] with return the whole list, so s1[:][0] will return the first element of the whole list, equal to [0.5, 0] . s1[:]返回整个列表,因此s1[:][0]将返回整个列表的第一个元素,等于[0.5, 0]

One way this can be done with list comprehensions is:使用列表推导可以做到这一点的一种方法是:

#import matplotlib.pyplot as plt


plt.plot(s1[:,0],s1[:,1],'-o',color='b')
plt.plot(s2[:,0],s2[:,1],'-x',color='r')
plt.grid(True)
plt.xlabel("x") 
plt.ylabel("y")
plt.show()

Both generate the following graph:两者都生成以下图表: 由代码片段生成的图表

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM