首页 > TAG信息列表 > pands
Pandas:波浪号“~”在 pandas 中的用法
“~ ”在pands中表示否定的意思。 In[1]:s = pd.Series(range(-3, 4)) Out[1]: s 0 -3 1 -2 2 -1 3 0 4 1 5 2 6 3 In[2]:s[~(s < 0)] Out[2]: 3 0 4 1 5 2 6 3 dtype: int64 其它: | for or, & for and 参考:Boolean Indexing,https://pandas.Numpy、Matplotlib和Pands
#!/usr/bin/env python # coding: utf-8 # # Numpy # In[1]: # numpy import numpy as np np.arange(10) # 0 ~ n-1的一维数组 # In[ ]: np.ones((2,3)) # 全1数组 # In[ ]: np.zeros((3,3),dtype=np.int32) # 全0数组 # In[ ]: np.eye(5) # 5 * 5 的对角pands模块的妙用爬取网页中的表格
拿我这篇为例https://www.cnblogs.com/pythonywy/p/11574340.html import pandas as pd df = pd.read_html('https://www.cnblogs.com/pythonywy/p/11574340.html') print(df) '''[ 设备 rpx换算px (屏幕宽度/750) px换算rpx (750/屏幕宽度) 0 iPhonpands:numpy函数应用与映射
numpy函数应用与映射 from pandas import Index from pandas import Series,DataFrame import numpy as np import pandas as pd #numpy函数在Series/DataFrame的应用 frame=DataFrame(np.arange(9).reshape(3,3), columns= ['A','B','C