标签:lan color 添加 string 数据类型 文本文件 nic targe tps
同时存在多种数据类型,如
data.txt
5.1,3.5,1.4,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
5.8,2.7,4.1,1.0,Iris-versicolor
6.2,2.2,4.5,1.5,Iris-versicolor
6.4,3.1,5.5,1.8,Iris-virginica
6.0,3.0,4.8,1.8,Iris-virginica
这里formats
字符部分不能使用np.str,要改用|SNum
, Num为字符长度
np.loadtxt("data.txt",
dtype={‘names‘: (‘sepal length‘, ‘sepal width‘, ‘petal length‘, ‘petal width‘, ‘label‘),
‘formats‘: (np.float, np.float, np.float, np.float, ‘|S15‘)},
delimiter=‘,‘, skiprows=0)
values = np.loadtxt(‘data‘, delimiter=‘,‘, usecols=[0,1,2,3])
labels = np.loadtxt(‘data‘, delimiter=‘,‘, usecols=[4])
标签:lan color 添加 string 数据类型 文本文件 nic targe tps
原文地址:https://www.cnblogs.com/xiaxuexiaoab/p/14734280.html