码迷,mamicode.com
首页 > 其他好文 > 详细

pandas as_matrix()

时间:2018-07-31 10:59:19      阅读:2589      评论:0      收藏:0      [点我收藏+]

标签:div   sha   code   and   class   dataframe   style   ram   out   

df = pd.DataFrame(np.arange(12).reshape(3, 4))

df
Out[10]: 
   0  1   2   3
0  0  1   2   3
1  4  5   6   7
2  8  9  10  11

df.as_matrix()
Out[11]: 
array([[ 0,  1,  2,  3],
       [ 4,  5,  6,  7],
       [ 8,  9, 10, 11]])

 

pandas as_matrix()

标签:div   sha   code   and   class   dataframe   style   ram   out   

原文地址:https://www.cnblogs.com/key221/p/9394051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!