gpt4 book ai didi

python - matplotlib 中具有可变长度数据的箱线图

转载 作者:太空狗 更新时间:2023-10-29 18:18:51 28 4
gpt4 key购买 nike

我在一个文本文件中收集了一些数据,想创建一个箱线图。但是这个数据文件包含可变长度的行,例如。

1.2, 2.3, 3.0, 4.5  
1.1, 2.2, 2.9

等长我可以做

PW  = numpy.loadtxt("./learning.dat")  
matplotlib.boxplot(PW.T);

如何处理可变长度数据线?

最佳答案

只需使用数组或列表的列表。 boxplot 将采用任何类型的序列(好吧,任何具有 __len__ 的序列,无论如何。它不适用于生成器等)。

例如:

import matplotlib.pyplot as plt
x = [[1.2, 2.3, 3.0, 4.5],
[1.1, 2.2, 2.9]]
plt.boxplot(x)
plt.show()

enter image description here

如果您询问如何读取数据,有很多方法可以满足您的需求。举个简单的例子:

import matplotlib.pyplot as plt
import numpy as np

def arrays_from_file(filename):
"""Builds a list of variable length arrays from a comma-delimited text file"""
output = []
with open(filename, 'r') as infile:
for line in infile:
line = np.array(line.strip().split(','), dtype=np.float)
output.append(line)
return output

plt.boxplot(arrays_from_file('test.txt'))
plt.show()

关于python - matplotlib 中具有可变长度数据的箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4842805/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com