• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

pandas 在数据框内删除指定字符后的字符串部分

用户头像
it1352
帮助1

问题说明

我想要一个简单的方法来删除数据帧中指定字符后的字符串部分. 这是一个简化的示例:

I would like a simple mehtod to delete parts of a string after a specified character inside a dataframe. Here is a simplified example:

df:

   obs         a  b  c  d
0    1   1-23-12  1  2  3
1    2  12-23-13  4  5  5
2    3  21-23-14  4  5  5

我想在第一个-号后删除a列中的部分,我的预期输出是:

I would like to remove the parts in the a column after the first - sign, my expected output is:

newdf:

   obs   a  b  c  d
0    1   1  1  2  3
1    2  12  4  5  5
2    3  21  4  5  5

正确答案

#1

您可以通过将重新格式化函数传递给apply方法的方式来重新格式化值,如下所示:

You can reformat the values by passing a reformatting function into the apply method as follows:

from StringIO import StringIO
import pandas as pd

data = """   obs  a  b  c  d
1   1-23-12  1  2  3
2  12-23-13  4  5  5
3  21-23-14  4  5  5"""

# Build dataframe from data
df = pd.read_table(StringIO(data), sep='  ')

# Reformat values for column a using an unnamed lambda function
df['a'] = df['a'].apply(lambda x: x.split('-')[0])

这将为您提供所需的结果:

This gives you your desired result:

   obs   a  b  c  d
0    1   1  1  2  3
1    2  12  4  5  5
2    3  21  4  5  5

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgkhab
系列文章
更多 icon
同类精品
更多 icon
继续加载