numpy.loadtxt:值错误:无法将字符串转换为浮点型

时间:2019-11-29 04:05:15

标签: python-3.x numpy numpy-ndarray

无法使用import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Layouts 1.12 Page{ id : HeaderView visible :true anchors.fill: parent property MainHeaderViewModel viewModel header : ToolBar { id: toolBar background: Rectangle { implicitHeight: 40 // color: "#c3c3c3" Rectangle { width: parent.width height: 1 anchors.bottom: parent.bottom color: "transparent" border.color: "pink" } } RowLayout { anchors.bottom: parent.bottom anchors.left: parent.left anchors.top: parent.top ToolButton { text: qsTr(":") } ToolButton { text: qsTr("Create") } ToolButton { text: qsTr("Edit") } } } SwipeView { id: view currentIndex : toolBar.currentIndex //It doesn't work anchors.fill: parent Item { id: firstPage Text { id: name0 text: qsTr("test1") } } Item { id: secondPage Text { id: name1 text: qsTr("test2") } } Item { id: thirdPage Text { id: name3 text: qsTr("test3") } } } } 加载虹膜数据集的数据。

给出np.loadtxt

我可以使用value error: could not convert from string to float加载它,但genfromtxt却没有发生。之前已经有人问过这个问题,但是解决方案不适用于我的数据集。

excel工作表如下:

enter image description here

0 个答案:

没有答案