1. Expressing Conditional Logic as Array Operations (像数组操作一样表示逻辑条件)
np.where(condition,x,y)
# if condition,x, else, y
2. Mathematical and Statistical Methods (数学和统计方法)
3. Methods for Boolean Arrays(布尔数组的方法)
4. Sorting(排序)
numpy中也有sort方法
5. Unique and Other Set Logic (单一性和其他集合逻辑)
Numpy也有一些基本的集合操作用于一维数组。np.unique,能返回排好序且不重复的值
np.unique(arr)