Gleanings of Python

来源:互联网 发布:弦歌知雅意 编辑:程序博客网 时间:2024/05/27 16:43
  1. ctrl + left click in Spyder can quickly go to the related file.
  2. kwargs: key word arguments
  3. take in numpy: Return an array formed from the elements of a at the given in indices.
import numpy as npa = np.asarray(range(10) - 9)b = a.take([2,3])output:array([-7, -6])
  1. c_, r_
    help(np.c_):
 Translates slice objects to concatenation along the second axis. |   |  This is short-hand for ``np.r_['-1,2,0', index expression]``, which is |  useful because of its common occurrence. In particular, arrays will be |  stacked along their last axis after being upgraded to at least 2-D with |  1's post-pended to the shape (column vectors made out of 1-D arrays). |   |  For detailed documentation, see `r_`. |   |  Examples |  -------- |  >>> np.c_[np.array([[1,2,3]]), 0, 0, np.array([[4,5,6]])] |  array([[1, 2, 3, 0, 0, 4, 5, 6]])
0 0
原创粉丝点击