• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

基于pandas中expand的作用详解

python 搞代码 4年前 (2022-01-08) 17次浏览 已收录 0个评论

今天小编就为大家分享一篇基于pandas中expand的作用详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

expand表示是否把series类型转化为DataFrame类型

下面代码中的n表示去掉下划线”_”的数量

代码如下:

 import numpy as np import pandas as pd s2 = pd.Series(['a_b_c_f_j', 'c_d_e_f_h', np.nan, 'f_g_h_x_g']) print("-----------------------------------") print(s2.str.split('_')) print("-----------------------------------") print(s2.str.split('_').str.get(1)) print("-----------------------------------") print(s2.str.split('_').str[1]) print("---------------expand=True--------------------") expand1=s2.str.split('_', expand=True) print(expand1) print(type(expand1)) print("---------------expand=False--------------------") expand2=s<div style="color:transparent">来源gaodai^.ma#com搞#代!码网</div>2.str.split('_', expand=False) print(expand2) print(type(expand2)) print("##########################################################") print("---------------expand=True,n=1--------------------") expand1=s2.str.rsplit('_', expand=True,n=1) print(expand1) print("---------------expand=False,n=1--------------------") expand2=s2.str.rsplit('_', expand=False,n=1) print(expand2) 

运行结果如下:

 ----------------------------------- 0  [a, b, c, f, j] 1  [c, d, e, f, h] 2        NaN 3  [f, g, h, x, g] dtype: object ----------------------------------- 0   b 1   d 2  NaN 3   g dtype: object ----------------------------------- 0   b 1   d 2  NaN 3   g dtype: object ---------------expand=True-------------------- 0  1  2  3  4 0  a  b  c  f  j 1  c  d  e  f  h 2 NaN NaN NaN NaN NaN 3  f  g  h  x  g  ---------------expand=False-------------------- 0  [a, b, c, f, j] 1  [c, d, e, f, h] 2        NaN 3  [f, g, h, x, g] dtype: object  ########################################################## ---------------expand=True,n=1-------------------- 0  1 0 a_b_c_f  j 1 c_d_e_f  h 2   NaN NaN 3 f_g_h_x  g ---------------expand=False,n=1-------------------- 0  [a_b_c_f, j] 1  [c_d_e_f, h] 2       NaN 3  [f_g_h_x, g] dtype: object [Finished in 0.4s]

以上就是基于pandas中expand的作用详解的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:基于pandas中expand的作用详解
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址