赞
踩
使用shape[0]读取矩阵的行数(长度)
shape[1]的读取矩阵列数
直接用.shape可以快速读取矩阵的形状。
使用方法
import numpy as np
x=np.array([[1,2,3],[4,5,6]])
print(x.shape)
print(x.shape[0])
print(x.shape[1])
(2, 3)
2
3
还可以判断是否存在重复值
tcc['customerID'].nunique() == tcc.shape[0]
原文链接:https://blog.csdn.net/wzk4869/article/details/126022909
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。