資料分析系列 之python中擴充庫SciPy的使用
import numpy as np
aArray = np.array([(1,2,3),(4,5,6)])
輸入: aArray
輸出: array([(1,2,3),
(4,5,6)])
bArray = np.linspace(1,2,5,endpoint=False)
輸入: bArray
輸出: [1. 1.2 1.4 1.6 1.8]
cArray = np.linspace(1,49,25,dtype=int)
輸入: print(cArray)
輸出: [ 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49]
dArray = np.linspace(1,49,25,dtype=int)
輸入: print(dArray)
輸出: [ 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 50]
# 生成 9*9 的乘法口訣表
np.fromfunction(lambda i,j:(i+1)*(j+1),(9,9))
# 選擇列和行的資料
import numpy as np
x = np.array([[1,2,3],[4,5,6],[7,8,9]])
# 選擇第一列和第三列資料
print(x[:,[0,2]])
[[1 3]
[4 6]
[7 9]]
# 選擇第一行和第三行
print(x[::2])
[[1 2 3]
[7 8 9]]
# 選擇第一列和第三列
print(x[:,::2])
[[1 3]
[4 6]
[7 9]]
# 交換行
print(x[::-1])
[[7 8 9]
[4 5 6]
[1 2 3]]
# 交換列
print(x[:,::-1])
[[3 2 1]
[6 5 4]
[9 8 7]]
# 用函式改變
import numpy as np
x = np.array([[1,2,3],[4,5,6]])
#外匯跟單gendan5.com 由兩行三列變成三行兩列
y = x.reshape(3,2)
或者: y = x.reshape(3,-1)
print(y)
[[1 2]
[3 4]
[5 6]]
print(x)
[[1 2 3]
[4 5 6]]
# 如果真正改變 x ?
x.resize(3,2)
x = np.array([1,2,3])
y = np.array([4,5,6])
# 垂直方向上拼接
np.vstack((x,y))
[[1 2 3]
[4 5 6]]
# 水平方向上拼接
np.hstack((x,y))
[1 2 3 4 5 6]
x = np.array([1,2,3])
y = np.array([[4,5,6],[7,8,9]])
# 廣播, x 擴充
print(x+y)
[[ 5 7 9]
[ 8 10 12]]
y = np.array([[4,5,6],[7,8,9]])
# 沿列求和
print(y.sum(axis=0))
[11 13 15]
# 沿行求和
print(y.sum(axis=1))
[15 24]
# 最小值
print(y.min())
4
# 最大值 9 的 index
print(y.argmax())
5
# 方差
print(y.var())
2.9166666666666665
# 標準差
print(y.std())
1.707825127659933
x = np.array([[1,2],[3,4]])
# 行列式
print(np.linalg.det(x))
-2.0000000000000004
# 逆矩陣
print(np.linalg.inv(x))
[[-2. 1. ]
[ 1.5 -0.5]]
# 矩陣內積
print(np.dot(x,x))
[[ 7 10]
[15 22]]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2770867/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- PHP 資料庫擴充之 PDOPHP資料庫
- 使用cython擴充套件python庫套件Python
- GBASE觀察:擴充套件分析型資料庫套件資料庫
- Python 音訊的資料擴充Python音訊
- 使用nub恢復資料庫的知識擴充套件資料庫套件
- ignite系列之20-資料來源擴充套件GaussDB套件
- dart系列之:dart類的擴充套件Dart套件
- Python 擴充之 *args & **kwargsPython
- Python 擴充之迭代器Python
- Laravel MongoDB 資料庫查詢擴充外掛 擴充原始 Laravel 類LaravelMongoDB資料庫
- Dubbo系列之 (一)SPI擴充套件套件
- Oracle資料庫壞塊典型案例擴充Oracle資料庫
- PHP的SPL擴充套件庫(一)資料結構PHP套件資料結構
- ASP.NET Core擴充套件庫之Http通用擴充套件ASP.NET套件HTTP
- 【SpringBoot】分析 SpringBoot 中的擴充套件點Spring Boot套件
- SpringCloudGateway資料庫儲存路由資訊的擴充套件方案SpringGCCloudGateway資料庫路由套件
- 精美的資料分析圖! 教你使用 Python 的 Plotly 庫Python
- 使用ctypes來擴充套件Python套件Python
- 微服務架構中資料庫擴充套件和最佳化微服務架構資料庫套件
- SPI擴充套件點在業務中的使用及原理分析套件
- burpsuite擴充套件開發之PythonUI套件Python
- Python 中 Singleton 的寫法及其擴充Python
- 擴充套件我們的分析處理服務(Smartly.io):使用 Citus 對 PostgreSQL 資料庫進行分片套件SQL資料庫
- 使用 Visual Studio Code SQLite 擴充套件來瀏覽 SAP CAP 資料庫SQLite套件資料庫
- 練習安裝Python擴充套件庫Python套件
- 使用 Python 構建可擴充套件的社交媒體情感分析服務Python套件
- 讓前端也能填充資料庫的 Reach Seeder 擴充套件前端資料庫套件
- 可擴充套件的資料庫系統,請求批評套件資料庫
- Python資料分析之numpyPython
- Python資料分析之pandasPython
- Python武器庫 - 科研中常用的python字串處理 - 字串擴充Python字串
- TDC 3.0 從資料分析到資料流通,資料雲擴充新場景
- Spring Cloud Gateway 資料庫儲存路由資訊的擴充套件方案SpringCloudGateway資料庫路由套件
- 【Python入門】Python資料分析最重要的庫!Python
- Spring Boot中的Mongodb多資料來源擴充套件Spring BootMongoDB套件
- PHP原始碼系列之擴充套件的原理與開發PHP原始碼套件
- 使用python進行Oracle資料庫效能趨勢分析PythonOracle資料庫
- SciPy 空間資料