1. 程式人生 > >numpy 初識(一)

numpy 初識(一)

iter clas spa rom span panda 向量 pri 操作

文件操作:

  • 讀取文件(與pandas讀取csv相似):
import numpy
numpy.genfromtxt("word.txt", delimiter=,, dtype=str)
# => <class ‘numpy.ndarray‘>
  • numpy.array(序列)
# 一維向量
vector = numpy.array([1, 2, 3, 4])
print(vector.shape)

# 二維矩陣
matrix = numpy.array([[5, 10, 15], [20, 25, 30]])
print(matrix.shape)
(4,)
(2, 3)

numpy 初識(一)