gpt4 book ai didi

Python - Pandas - 将横截面与 str.contains 结合使用

转载 作者:太空宇宙 更新时间:2023-11-03 14:05:15 27 4
gpt4 key购买 nike

有没有办法使用pandas的横截面方法:

import numpy as np
import pandas as pd
arrays = [np.array(['bar', 'bar', 'baz', 'baz', 'foo', 'foo', 'qux', 'qux']),
np.array(['one', 'two', 'one', 'two', 'one', 'two', 'one', 'two'])]
df = pd.DataFrame(np.random.randn(8, 4), index=arrays)

df.xs('bar',level=0)

与 str.contains 方法结合使用:https://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.str.contains.html

目标是选择特定级别的数据,但仅基于包含给定字符串的级别。

在这种特定情况下,它会是这样的:

df.xs(df.str.contains('ba'),level=0)

在这种特定情况下,它应该返回(这是一个示例,显然在这里,执行“bar”或“ba”将返回相同的输出)

         0         1         2         3
one -0.148672 1.025935 0.948375 -0.214719
two 0.066008 0.429827 0.621165 -0.534449

最佳答案

使用boolean indexingget_level_values :

df = df[df.index.get_level_values(0).str.contains('ba')]
print (df)
0 1 2 3
bar one -0.556376 -0.295627 0.618673 -0.409434
two 0.107020 -1.143460 -0.145909 0.017417
baz one 0.117667 -0.301128 0.880918 -1.027282
two 2.287448 1.528137 -1.528636 0.052728

详细信息:

print (df.index.get_level_values(0))
Index(['bar', 'bar', 'baz', 'baz', 'foo', 'foo', 'qux', 'qux'], dtype='object')

print (df.index.get_level_values(0).str.contains('ba'))
[ True True True True False False False False]

关于Python - Pandas - 将横截面与 str.contains 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48945380/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com