你们都知道Pandas和NumPy函数很棒,它们在平常分析中起着重要的做用。没有这两个函数,人们将在这个庞大的数据分析和科学世界中迷失方向。php
今天,小芯将分享12个很棒的Pandas和NumPy函数,这些函数将会让生活更便捷,让分析事半功倍。nginx
在本文结尾,读者能够找到文中提到的代码的JupyterNotebook。git
NumPy是使用Python进行科学计算的基本软件包。它包含如下内容:github
除明显的科学用途外,NumPy是高效的通用数据多维容器,能够定义任意数据类型。这使NumPy可以无缝且高速地与各类数据库进行集成。数据库
Allclose() 用于匹配两个数组而且以布尔值形式输出。若是两个数组的项在公差范围内不相等,则返回False。这是检查两个数组是否类似的好方法,由于这一点实际很难手动实现。vim
array1 = np.array([0.12,0.17,0.24,0.29]) array2 = np.array([0.13,0.19,0.26,0.31])# with a tolerance of 0.1, it shouldreturn False: np.allclose(array1,array2,0.1) False# with a tolerance of 0.2, it should return True: np.allclose(array1,array2,0.2) True
NumPy的这个函数很是优秀,能够找到N最大值索引。输出N最大值索引,而后根据须要,对值进行排序。数组
x = np.array([12, 10, 12, 0, 6, 8, 9, 1, 16, 4, 6,0])index_val = np.argpartition(x, -4)[-4:] index_val array([1, 8, 2, 0], dtype=int64)np.sort(x[index_val]) array([10, 12, 12, 16])
Clip() 用于将值保留在间隔的数组中。有时,须要将值保持在上限和下限之间。所以,可使用NumPy的clip()函数。给定一个间隔,该间隔之外的值都将被裁剪到间隔边缘。数据结构
x = np.array([3, 17, 14, 23, 2, 2, 6, 8, 1, 2, 16,0])np.clip(x,2,5) array([3, 5, 5, 5, 2, 2, 5, 5, 2, 2, 5, 2])
顾名思义,extract() 函数用于根据特定条件从数组中提取特定元素。有了该函数,还可使用and和or等的语句。app
# Random integers
array = np.random.randint(20, size=12) array array([ 0, 1, 8, 19, 16, 18, 10, 11, 2, 13, 14, 3])# Divide by 2 and check ifremainder is 1 cond = np.mod(array, 2)==1 cond array([False, True, False, True, False, False, False, True, False, True, False, True])# Use extract to get the values np.extract(cond, array) array([ 1, 19, 11, 13, 3])# Applycondition on extract directly np.extract(((array < 3) | (array > 15)), array) array([ 0, 1, 19, 16, 18, 2])
Percentile()用于计算沿指定轴的数组元素的第n个百分位数。dom
a = np.array([1,5,6,8,1,7,3,6,9])print("50thPercentile of a, axis = 0 : ", np.percentile(a, 50, axis =0)) 50th Percentile of a, axis = 0 : 6.0b =np.array([[10, 7, 4], [3, 2, 1]])print("30th Percentile of b, axis = 0 :", np.percentile(b, 30, axis =0)) 30th Percentile of b, axis = 0 : [5.13.5 1.9]
Where() 用于从知足特定条件的数组中返回元素。它返回在特定条件下值的索引位置。这差很少相似于在SQL中使用的where语句。请看如下示例中的演示。
y = np.array([1,5,6,8,1,7,3,6,9])# Where y is greaterthan 5, returns index position np.where(y>5) array([2, 3, 5, 7, 8], dtype=int64),)# First will replace the values that matchthe condition, # second will replace the values that does not np.where(y>5, "Hit", "Miss") array(['Miss', 'Miss', 'Hit', 'Hit', 'Miss', 'Hit', 'Miss', 'Hit','Hit'],dtype='<U4')
接着来说一讲神奇的Pandas函数。
Pandas是一个Python软件包,提供快速、灵活和富有表现力的数据结构,旨在使处理结构化(表格,多维,潜在异构)的数据和时间序列数据既简单又直观。
Pandas很是适合许多不一样类型的数据:
如下是Pandas的优点:
Apply() 函数容许用户传递函数并将其应用于Pandas序列中每一个单一值。
# max minus mix lambda fn
fn = lambda x: x.max() - x.min()# Apply this on dframe that we've just createdabove dframe.apply(fn)
Copy()函数用于建立Pandas对象的副本。将数据帧分配给另外一个数据帧时,在另外一个数据帧中进行更改,其值也会进行同步更改。为了不出现上述问题,可使用copy()函数。
# creating sample series
data = pd.Series(['India', 'Pakistan', 'China', 'Mongolia'])# Assigning issuethat we face datadata1= data # Change a value data1[0]='USA' # Also changes value in old dataframe data# To prevent that, we use # creating copy of series new = data.copy()# assigning new values new[1]='Changed value'# printing data print(new) print(data)
读者可能已经知道了read-csv函数的重要性。但即便没必要要,大多数人仍会错误地读取整个.csv文件。假设未知10GB的.csv文件中的列和数据,在这种状况下读取整个.csv文件并不是明智的决定,由于这会浪费内存和时间。能够仅从.csv中导入几行,而后根据须要继续操做。
import io
import requests# I am using this online data set just to make things easier foryou guys url = "https://raw.github.com/vincentarelbundock/Rdatasets/master/csv/datasets/AirPassengers.csv" s = requests.get(url).content# read only first 10 rows df = pd.read_csv(io.StringIO(s.decode('utf-8')),nrows=10 , index_col=0)
map()函数用于根据输入对应关系映射Series的值。用于将序列(Series)中的每一个值替换为另外一个值,该值能够从函数、字典或序列(Series)中得出。
# create a dataframe
dframe = pd.DataFrame(np.random.randn(4, 3), columns=list('bde'),index=['India', 'USA', 'China', 'Russia'])#compute a formatted string from eachfloating point value in frame changefn = lambda x: '%.2f' % x# Make changes element-wise dframe['d'].map(changefn)
Isin() 函数用于过滤数据帧。Isin() 有助于选择在特定列中具备特定(或多个)值的行。这是笔者见过的最有用的功能。
# Using the dataframe we created for read_csv
filter1 = df["value"].isin([112]) filter2 = df["time"].isin([1949.000000])df [filter1 & filter2]
select_dtypes()函数基于dtypes列返回数据框的列的子集。设置此函数的参数,以包括具备某些特定数据类型的全部列;也可对其进行设置,以排除具备某些特定数据类型的全部列。
# We'll use the same dataframe that we used for read_csv
framex = df.select_dtypes(include="float64")# Returns only time column
Pandas最神奇最有用的功能是pivot_table。若是你纠结因而否使用groupby,并想扩展其功能,那么不妨试试pivot-table。若是明白数据透视表在excel中的工做原理,那么一切就很是简单了。数据透视表中的级别将存贮在MultiIndex对象(分层索引)中,而该对象位于DataFrame结果的索引和列上。
# Create a sample dataframe
school = pd.DataFrame({'A': ['Jay', 'Usher', 'Nicky', 'Romero', 'Will'], 'B': ['Masters', 'Graduate','Graduate', 'Masters', 'Graduate'], 'C': [26, 22, 20, 23, 24]}) # Lets create a pivot table to segregate students based on age and course table = pd.pivot_table(school, values ='A', index =['B', 'C'], columns =['B'], aggfunc = np.sum,fill_value="Not Available") table