有人可以帮助我完成我的项目吗? 我想通过数据记录器将来自几个温度传感器的数据保存到文件中,然后使用Python程序进行分析。 那是我的问题。 处理完数据后,创建一个交互式3D地图,将传感器的测量结果用作颜色渐变。
如果您错过了某些事情,或者没有提供足够的信息,请先抱歉。这是我在这里问的第一个问题。我以前没有使用过Python,所以我还是个“菜鸟”。
附上我有当前代码。 我希望这很明显,但是我想要将.txt文件中的数据用于RGB / RGBA时遇到的错误是:
10。,20.,30.,40.,50.,60.,50.,60.,50.,40.,30.,20.,10-->无效的RGBA参数:nan or,如果我将其转换为数组无效的RGBA参数:0.0
我发现RGB值只能在0.0到1.0之间处理,但是我的“颜色”数组还可以(请参见代码)
我看不到错误。我希望有人能帮帮忙。 预先感谢。
/最小:(可能存在错误的地方)
import matplotlib as mpl
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d.axes3d import Axes3D, get_test_data
from matplotlib import cm
import numpy as np
fig = plt.figure(figsize=plt.figaspect(1))
ax = fig.add_subplot(1, 1, 1, projection='3d')
data_file = np.genfromtxt('data_file.txt', delimiter=',')
color = mpl.colors.to_rgba_array(data_file[:,0], alpha=None)
c = np.abs(color)
cmhot = plt.get_cmap("hot")
ax.scatter(X, Y, Z, color, s=50, c=c, cmap=cmhot)
/完整代码:
import matplotlib as mpl
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d.axes3d import Axes3D, get_test_data
from matplotlib import cm
import numpy as np
import pandas as pd
from pandas import DataFrame
# set up a figure
fig = plt.figure(figsize=plt.figaspect(1))
ax = fig.add_subplot(1, 1, 1, projection='3d')
########################the part not working#########################
# load the data file
data_file = np.genfromtxt('data_file.txt', delimiter=',')
#possible processing / not working
#data_file = np.array(data_file)
#data_file = (data_file-min(data_file))/(max(data_file)-min(data_file))
# parse good sensor data from imported data
color = mpl.colors.to_rgba_array(data_file[:,0], alpha=None)
########################the part not working#########################
arrA = ([[ -4. ],
[ 0. ],
#...etc.
[ 0. ],
[ 4. ]])
arrB = ([[ -4. ],
[ -4. ],
#...etc.
[ 4. ],
[ 4. ]])
arrC = ([[ -30. ],
[ -30. ],
#...etc.
[ -30. ],
[ -30. ]])
#color = ([ 0. , 10. , 20. , 30. , 40. , 50. , 60. , 50. , 40. , 30. , 20. , 10. , 0. ])
arrA = np.array(arrA)
arrB = np.array(arrB)
arrC = np.array(arrC)
data_arrays = (arrA, arrB, arrC)
X, Y, Z = data_arrays
#ax.plot_wireframe(X, Y, Z, rstride=1, cstride=1, cmap='inferno')
c = np.abs(color)
cmhot = plt.get_cmap("hot")
ax.scatter(X, Y, Z, color, s=50, c=c, cmap=cmhot)
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z');
plt.show()
/ .txt文件
0. , 10. , 20. , 30. , 40. , 50. , 60. , 50. , 40. , 30. , 20. , 10. , 0.
10. , 20. , 30. , 40. , 50. , 60. , 50. , 60. , 50. , 40. , 30. , 20. , 10.
20. , 30. , 40. , 50. , 60. , 50. , 40. , 50. , 60. , 50. , 40. , 30. , 10.
40. , 50. , 60. , 50. , 40. , 30. , 20. , 30. , 40. , 50. , 60. , 50. , 40.
60. , 50. , 40. , 30. , 20. , 10. , 0. , 10. , 20. , 30. , 40. , 50. , 60.
#... etc.
/错误:
KeyError Traceback (most recent call last)
c:\users\te291095\appdata\local\programs\python\python36-32\lib\site-packages\matplotlib\colors.py in to_rgba(c, alpha)
165 try:
--> 166 rgba = _colors_full_map.cache[c, alpha]
167 except (KeyError, TypeError): # Not in cache, or unhashable.
KeyError: (nan, None)
During handling of the above exception, another exception occurred:
ValueError Traceback (most recent call last)
<ipython-input-26-8ef706d1f4cb> in <module>()
31
32 # parse good sensor data from imported data
---> 33 color = mpl.colors.to_rgba_array(data_file[:,0], alpha=None)
34 #color = data_file[:,0]
35 # display the first 16 sensor rows
c:\users\te291095\appdata\local\programs\python\python36-32\lib\site-packages\matplotlib\colors.py in to_rgba_array(c, alpha)
265 result = np.empty((len(c), 4), float)
266 for i, cc in enumerate(c):
--> 267 result[i] = to_rgba(cc, alpha)
268 return result
269
c:\users\te291095\appdata\local\programs\python\python36-32\lib\site-packages\matplotlib\colors.py in to_rgba(c, alpha)
166 rgba = _colors_full_map.cache[c, alpha]
167 except (KeyError, TypeError): # Not in cache, or unhashable.
--> 168 rgba = _to_rgba_no_colorcycle(c, alpha)
169 try:
170 _colors_full_map.cache[c, alpha] = rgba
c:\users\te291095\appdata\local\programs\python\python36-32\lib\site-packages\matplotlib\colors.py in _to_rgba_no_colorcycle(c, alpha)
217 # float)` and `np.array(...).astype(float)` all convert "0.5" to 0.5.
218 # Test dimensionality to reject single floats.
--> 219 raise ValueError("Invalid RGBA argument: {!r}".format(orig_c))
220 # Return a tuple to prevent the cached value from being modified.
221 c = tuple(c.astype(float))
ValueError: Invalid RGBA argument: nan
/可验证:
代码应从文件中读取数据,并将其作为散点图中各点的颜色进行处理。
如果您在没有文件的情况下手动读取了三行内容,只是将其保存为数组,则它可以工作(请参见下图),所以当我从文件中获取数据时,我不明白为什么它不起作用。
答案 0 :(得分:1)
您要报告的问题是:mpl.colors.to_rgba_array
需要一个Matplotlib Color值数组,而不是浮点数。
在这里看看: https://matplotlib.org/api/colors_api.html#module-matplotlib.colors
还要看下面的堆栈溢出文章: How to map number to color using matplotlib's colormap?
您可以通过使用以下内容进行更改来修复它(请注意我选择的任意vmin和vmax值):
norm = mpl.colors.Normalize(vmin=0, vmax=60)
cmap = cm.hot
m = cm.ScalarMappable(norm=norm, cmap=cmap)
map_to_color = np.vectorize(m.to_rgba)
# parse good sensor data from imported data
color = map_to_color(data_file[:, 0])
您发布的样本中关于传递给ax.scatter
的维度的问题还存在其他问题,但是我敢肯定,您可以自己快速进行修复。
编辑:
在进一步研究了matplotlib.pyplot.scatter(https://matplotlib.org/api/_as_gen/matplotlib.pyplot.scatter.html)之后,这是使示例工作的最快方法。
删除故障行:
color = mpl.colors.to_rgba_array(data_file[:,0], alpha=None)
并替换该块:
c = np.abs(color)
cmhot = plt.get_cmap("hot")
ax.scatter(X, Y, Z, color, s=50, c=c, cmap=cmhot)
具有:
values = data_file[:4, 0]
ax.scatter(X, Y, Z, c=values, cmap="hot")
使用data_file[:4, 0]
而不是data_file[:, 0]
来确保输入x和y(n = 4)的维数与传递给c
的颜色/值的维数(应该也长n
)
答案 1 :(得分:0)
感谢@stakka的回答。 现在,我缩短了代码,并删除了所有不必要的内容。 现在看起来像这样,可以正常工作:
import matplotlib as mpl
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d.axes3d import Axes3D, get_test_data
from matplotlib import cm
import numpy as np
# set up a figure
fig = plt.figure(figsize=plt.figaspect(1))
# add the projection
ax = fig.add_subplot(1, 1, 1, projection='3d')
# load the data file
data_file = np.genfromtxt('data_file_noarr.txt', delimiter=',')
arrA = ([[0],[2],[4],[0],[2],[4],[0],[2],[4]])
arrB = ([[0],[0],[0],[2],[2],[2],[4],[4],[4]])
arrA = np.array(arrA)
arrB = np.array(arrB)
# <-- Lowest Plot to Highest Plot loop -->
#################################################################
count = 0
cmhot = plt.get_cmap("hot")
while count < 10:
values = data_file[0:9, count]
arrC = np.full((9, 1), count)
arrC = np.array(arrC)
data_arrays = (arrA, arrB, arrC)
X, Y, Z = data_arrays
ax.scatter(X, Y, Z, c=values, cmap=cmhot)
count = count + 1
#################################################################
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z');
plt.show()
/输出: