Python
文章平均质量分 68
lyghe
这个作者很懒,什么都没留下…
展开
-
多维索引(数值索引、逻辑索引) 之 numpy与R语言比较
>>> import numpy as np>>> a = np.arange(12).reshape(3,4)>>> aarray([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11]])>>> b1 = np.array([Fals...原创 2018-05-22 11:38:58 · 2111 阅读 · 0 评论 -
星号表达式
【星号表达式】用于把 iterable 解开,传递给函数的多参数列表。In [1]:list(zip(*[['bar', 'bar', 'baz', 'baz', 'foo', 'foo', 'qux', 'qux'], ['one', 'two', 'one', 'two', 'one', 'two', 'one', 'two']]))Out[1]:[('bar', 'one...原创 2018-05-22 16:12:53 · 409 阅读 · 0 评论 -
pandas切片上的运算和赋值比较
x =pd.Series(np.arange(0,10))y =pd.Series(np.arange(100,110))df =pd.DataFrame({'x':x, 'y':y})df x y0 0 1001 1 1012 2 1023 3 1034 4 1045 5 1056 6 1067 7 1078 8 1089 9 109 运算 ...原创 2018-06-29 11:35:45 · 4044 阅读 · 0 评论 -
Python中把多维数组展开成DataFrame
import numpy as npimport pandas as pd################# 准备数据 #################a1 = np.arange(1,101)a3 = a1.reshape((2,5,10))a3'''array([[[ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], ...原创 2018-06-27 13:18:51 · 14143 阅读 · 0 评论