如何修复错误AttributeError:“Series”对象没有属性“swifter”?

2024-04-28 12:22:50 发布

您现在位置:Python中文网/ 问答频道 /正文

这非常直接,我试图复制Swifter pagehttps://github.com/jmcarpenter2/swifter中使用的示例。但是,我不断得到错误AttributeError:“Series”对象没有属性“swifter”。怎么回事

更新-我尝试的示例:

import pandas as pd
import swifter 

df = pd.DataFrame({'x': [1, 2, 3, 4], 'y': [5, 6, 7, 8]})

# runs on single core
df['x2'] = df['x'].apply(lambda x: x**2)
# runs on multiple cores
df['x2'] = df['x'].swifter.apply(lambda x: x**2)

# use swifter apply on whole dataframe
df['agg'] = df.swifter.apply(lambda x: x.sum() - x.min())

# use swifter apply on specific columns
df['outCol'] = df[['inCol1', 'inCol2']].swifter.apply(my_func)
df['outCol'] = df[['inCol1', 'inCol2', 'inCol3']].swifter.apply(my_func,
         positional_arg, keyword_arg=keyword_argval)

Tags: lambdaimport示例dfuseonmyruns