我的WPF窗口导入pyplot.hist
。
我想在ListView中显示每个weights
(以及其他信息),每个import matplotlib.pyplot as plt
import numpy as np; np.random.seed(42)
data = np.random.normal(50, 20, 10000)
factor = 2
hist_bin_width = 40
plt.hist(data, bins=range(-100, 200, hist_bin_width),
weights=factor*np.ones_like(data))
plt.show()
可能位于单独的TabItem中,但我事先不知道会有多少个List。我完成了一个模板来显示一个List<List<T>>
,但是我想在每个TabItem中重复它。