100個numpy問題25-100

2020-10-20 12:00:58
  1. 如何從帶有文字資訊的資料檔案中讀取資料並保持文字資訊的完整性,比如:
# 從帶有文字資訊的csv檔案中讀取資料和文字資訊
# 原始檔案位置
file_path = "C:/Users/15025/Desktop/Iris.csv"

我們使用的測試文字資料可以從這個連結下載,測試資料(超連結點選跳轉,僅粉絲可以下載,關注我即可免費下載使用)。

使用np.genfromtxt()函數

# -*- coding: utf-8 -*-
"""
Created on Sun Oct 18 07:09:59 2020

@author: 15025
"""

import numpy as np


class NumpyStudy