摘要:
```
import pandas as pd #生成数据
data1,data2,data3,data4=['a',3],['b',2],['a',3],['c',2]
df=pd.DataFrame([data1,data2,data3,data4],columns=['col1','col2'])
print(df) col1 col2
0 a 3
1 b ... 阅读全文
摘要:
``` import pandas as pd #生成异常数据 df=pd.DataFrame({'col1':[1,120,3,5,2,12,13], 'col2':[12,17,31,53,22,32,43]}) print(df) col1 col2 0 1 12 1 120 17 2 3 31 3 5 53 4 2 22 5 12 32 6 13 43 df_zscore=df.copy( 阅读全文
摘要:
参考网友解决的方法 任何报SSLError类的错,解决方法: 引入ssl模块 在url链接代码上方添加语句: 来源于 https://www.jianshu.com/p/b6b85e53d2e1 阅读全文