python硬件不兼容_PYthon numpy 新版本不兼容旧版本 问题

本文通过使用Pandas和Numpy创建DataFrame实例并进行数据处理,演示了如何生成随机整数、正态分布数据及等差数列,并将这些数据整合到同一个DataFrame中。此外,还介绍了如何使用argwhere函数找出特定条件下符合条件的数据索引。
摘要由CSDN通过智能技术生成

import pandas as pd

import numpy as np

print (np.__version__)

print (pd.__version__)

tem = np.random.randint(1,100,20)

df1 = pd.DataFrame(tem)

tem = np.random.normal(0, 1, 20)

df3 = pd.DataFrame(tem)

tem = np.arange(0,100,5)

df2 = pd.DataFrame(tem)

df = pd.concat([df1,df2,df3],axis=1,ignore_index=True)

df.columns = ['col1','col2','col3']

print (df)

s = np.argwhere(df['col1'] % 5 == 0)

#print (df['col1'] % 5==0)

换低版本numpy 不会报错

看情况是版本问题,暂未找到解决方案

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值