美文网首页
python向量化运算

python向量化运算

作者: 马尔克ov | 来源:发表于2017-07-01 08:15 被阅读335次

    和apply类似的还有applymap和map,

    apply() 和applymap()是DataFrame数据类型的函数,map()是Series数据类型的函数。

    apply()的操作对象DataFrame的一列或者一行数据, applymap()是element-wise的,作用于每个DataFrame的每个数据。 map()也是element-wise的,对Series中的每个数据调用一次函数。​

    * apply works on a row / column basis of a DataFrame, applymap works element-wise on a DataFrame, and map works element-wise on a Series.​

    更多内容:http://pandas.pydata.org/pandas-docs/stable/api.html#id5

    相关文章

      网友评论

          本文标题:python向量化运算

          本文链接:https://www.haomeiwen.com/subject/cdjwcxtx.html