如果我有一个ntype字符串的numpy ndarray:
from numpy import array as narray
a = narray(['a', 'b'])
如何添加其他字符串?我如何通过索引访问该字符串?
答案 0 :(得分:1)
查看http://docs.scipy.org/doc/numpy/reference/generated/numpy.insert.html
例如,
numpy.insert( a, 2, 'c' )
会在c
中的第2位插入a
。