I have a 2D numpy array that\'s created like this:
data = np.empty((number_of_elements, 7))
Each row with 7 (or whatever) floats represents
Not sure exactly what you are looking for in the plot, but you can slice 2D arrays like this:
>>> a
array([[0, 1, 2],
[3, 4, 5],
[6, 7, 8]])
>>> a[:,1]
array([1, 4, 7])
>>> a[:,1:3]
array([[1, 2],
[4, 5],
[7, 8]])
Then some matplot to take care of the plotting. If you find what you are looking for at the Matplotlib Gallery I can help you more.
Setting up a basic matplotlib figure is easy:
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
Picking off the columns for x
, y
and color
might look something like this:
N = 100
data = np.random.random((N, 7))
x = data[:,0]
y = data[:,1]
points = data[:,2:4]
# color is the length of each vector in `points`
color = np.sqrt((points**2).sum(axis = 1))/np.sqrt(2.0)
rgb = plt.get_cmap('jet')(color)
The last line retrieves the jet
colormap and maps each of the float values (between 0 and 1) in the array color
to a 3-tuple RGB value.
There is a list of colormaps to choose from here. There is also a way to define custom colormaps.
Making a scatter plot is now straight-forward:
ax.scatter(x, y, color = rgb)
plt.show()
# plt.savefig('/tmp/out.png') # to save the figure to a file