- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
编辑 - 重新设计的问题
我需要打印 50 代计算机程序的健身数据 3D 直方图。该数据使用 DEAP 框架计算并存储在日志中。绘图的形式需要是 z 轴上的适应频率、x 轴上的生成和 y 轴上的 bin_edges。因此,对于 x 轴上的每一代,直方图的线位于 z-y 平面中。
每一代的频率数据包含在一个形状的 numpy 数组中(# Generations,#bin_edges),通过在每一代上运行 np.histogram() 获得。
histograms = [el[0] for el in logbook.chapters["fitness"].select("hist")]
histograms.shape
(51, 10) # (num gen, num bins)
print (histograms) # excerpt only
[[ 826. 145. 26. 2. 1. 0. 0. 0. 0. 0.]
[ 389. 446. 145. 16. 4. 0. 0. 0. 0. 0.]
[ 227. 320. 368. 73. 12. 0. 0. 0. 0. 0.]
[ 199. 128. 369. 261. 43. 0. 0. 0. 0. 0.]
[ 219. 92. 158. 393. 137. 1. 0. 0. 0. 0.]
[ 252. 90. 91. 237. 323. 6. 1. 0. 0. 0.]
[ 235. 89. 69. 96. 470. 36. 5. 0. 0. 0.]
[ 242. 78. 61. 51. 438. 114. 16. 0. 0. 0.]
[ 235. 82. 52. 52. 243. 279. 57. 0. 0. 0.]]
bin_edges
array([ 0., 9., 18., 27., 36., 45., 54., 63., 72., 81., 90.])
gen
[0, 1, 2, 3, 4, 5, 6, 7, 8, ...]
我已经进行了多次尝试,但似乎无法将直方图数据转换为正确的格式,或者可能无法将直方图数据转换为 matplotlibaxes.bar 的形状。
尝试 2:忙于返工
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
xedges = list(gen)
yedges = list(bin_edges)
H = histograms.T
fig=plt.figure()
# error on this line: TypeError: list indices must be integers or slices, not list
ax = fig.add_subplot(133, title='NonUniformImage: interpolated', aspect='equal', \
xlim=xedges[[0, -1]], ylim=yedges[[0, -1]])
im = mpl.image.NonUniformImage(ax, interpolation='bilinear')
xcenters = (xedges[:-1] + xedges[1:]) / 2
ycenters = (yedges[:-1] + yedges[1:]) / 2
im.set_data(xcenters, ycenters, H)
ax.images.append(im)
plt.show()
尝试 1:
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# I have a list of len(gen) histograms
# with an array of freq count for each bin
xs = list(gen)
ys = list(bin_edges)
zs = hist.T #ndarray
# error occurs here as
# ValueError: shape mismatch: objects cannot be broadcast to a single shape
ax.bar(xs, ys, zs)
plt.show()
最佳答案
我使用mplot3d
和bar
来绘制3d-hist
,如下所示:
#!/usr/bin/python3
# 2017.12.31 18:46:42 CST
# 2017.12.31 19:23:51 CST
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
## the hist data
data = np.array([
np.array([826, 145, 26, 2, 1, 0, 0, 0, 0, 0]),
np.array([389, 446, 145, 16, 4, 0, 0, 0, 0, 0]),
np.array([227, 320, 368, 73, 12, 0, 0, 0, 0, 0]),
np.array([199, 128, 369, 261, 43, 0, 0, 0, 0, 0]),
np.array([219, 92, 158, 393, 137, 1, 0, 0, 0, 0]),
np.array([252, 90, 91, 237, 323, 6, 1, 0, 0, 0]),
np.array([235, 89, 69, 96, 470, 36, 5, 0, 0, 0]),
np.array([242, 78, 61, 51, 438, 114, 16, 0, 0, 0]),
np.array([235, 82, 52, 52, 243, 279, 57, 0, 0, 0])
])
## other data
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
colors = ["r","g","b"]*10
## Draw 3D hist
ncnt, nbins = data.shape[:2]
xs = np.arange(nbins)
for i in range(ncnt):
ys = data[i]
cs = [colors[i]] * nbins
ax.bar(xs, ys.ravel(), zs=i, zdir='x', color=cs, alpha=0.8)
ax.set_xlabel('idx')
ax.set_ylabel('bins')
ax.set_zlabel('nums')
plt.show()
关于python - (hist, bin_edges) 列表的 3d 图,其中直方图条形图或线条位于 z-y 平面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48038422/
我在一个C++程序中找到了一段代码,好像每隔for()循环两次。在这个程序中循环,但为什么在这样的预处理器定义中需要第三个 for 呢? #define for for(int z=0;z<2;++z
我正在尝试分割其中有一个小写字母后跟一个大写字母的文本。 假设文本是: “Įvairių rūšiųSkinti kardeliai” 我想在“ųS”处拆分它,但是以下正则表达式“[ą-ž][Ą-Ž]
这个问题在这里已经有了答案: Reference - What does this regex mean? (1 个回答) 关闭 2 年前。 下面的正则表达式有什么区别。对我来说,它们都是一样的 [
我正在尝试用 Java 编写一个正则表达式: "/[A-Z]{6}-[A-Z]{4}-[A-Z]{4}/" 但是它不起作用。例如 "AASAAA-AAAA-AAAA".matches("/[A-Z]{
我需要确定一个字符串是否是一个变量标识符。 即(a-z,A-Z,,$) 后跟 (a-z,A-Z,0-9,,$) 我知道我可以使用手动配置的 reg exp 来完成它,但必须有一个更紧凑的内置函数我可以
早上好,我是新来的,我带来了一个小问题。我无法针对以下问题开发有效的算法:我需要找到三个正数 x、y 和 z 的组合,以便 x + y、x - y、y + z、y - z、x + z 和 x - z
这个问题已经有答案了: How does the ternary operator work? (12 个回答) 已关闭 6 年前。 我发现了一种不同的返回值的方式,并且很兴奋。它到底是什么意思? 如
我需要以下正则表达式,允许 [a-zA-Z]+ 或 [a-zA-Z]+[ \\-]{0,1}[a-zA-Z]+ 所以我想在 a-zA-Z 字符之间允许无限的减号和空格 示例: sdfsdfdsf-sf
我正在编写一个代码,它以“代码”(编码理论)作为输入,并且我已经计算了它的权重枚举器。我想使用 MacWilliams Identity 找到双代码的权重枚举器. 我有W(z) ,代码的权重枚举器,我
我已经编写了一个 child 文字游戏,现在我正在尝试优化性能。游戏以一种特殊的方式从数据库中挑选关键词,我想做得更好。 给定一个按字母数字排序的 MySQL 关键字字段: keyword s
假设一个字符串是abc/xyz/IMPORTANT/DATA/@#!%@!%,我只想要IMPORTANT/DATA/!%#@%!#% 我对正则表达式很烂,而且真的还没学过 JavaScript API
JS代码: ? 1
大家晚上好我想知道有没有更快的方法来生成以下形式的列表? [a,b,c,…,z] → [[z], [y,z], [x,y,z], … , [a,b,…,y,z]] 我知道切片是最好的方法之一,但没有更
我在 Firefox 和其他浏览器上遇到嵌套 z-index 的问题,我有一个 div,z-index 为 30000,位于 label 下方> zindex 为 9000。我认为这是由 z-inde
我正在尝试制作一个灯泡。这是代码 JSfiddle HTML 查询 $('.button').click(function() { $('#add').show();
在您想将嵌套模块导入命名空间的情况下,我总是这样写: from concurrent import futures 不过,我最近意识到这也可以使用“as”语法来表达。请参阅以下内容: import c
我正在尝试创建一个基本上复制 matlab 命令的函数:[z;-z] 其中 z = randn(m,n) 返回一个 m -by-n 随机条目矩阵。我能够在 C++ 中为下面的 randn 函数创建一个
好吧,我迷失在这些指针中,有人能准确地告诉我 char * x,y,z; 和 char* x,y,z 之间的区别是什么; 和 char (*)x,y,z; ?如果可以,请为您的答案或其他内容提供资源。
这是一道函数依赖题。 我知道当 x->yz 然后 x->y 和 x->z 时。但是上面的依赖关系可能吗? 最佳答案 If xy determines z can x determine z and y
我有一个列表列表 nLedgers - 一个 3D 点云: [nodeID, X, Y, Z] 多行。一些节点将具有相同的 X 和 Y 坐标以及不同的 Z 坐标。 我想首先确定具有相同 X 和 Y 坐
我是一名优秀的程序员,十分优秀!