我想把python pandas filter转换成python polars filter。
- df.loc[:,df.dtypes == object] = df.loc[:,df.dtypes == object].applymap(lambda x:str(x).strip())
- df.loc[:,df.dtypes == object] = df.loc[:,df.dtypes == object].replace('nan',np.NaN)
- df[dateCols 'fileColumn ']] = pd.to_datetime(df[dateCols 'fileColumn']],format=dtpattern,errors='raise')
有人能把这三个pandas过滤器转换成polars吗?把pandas过滤器转换成polars有点棘手。
1条答案
按热度按时间xzv2uavs1#
我将做我认为你正在尝试做的事情(但我同意你应该发布一个可复制的示例的评论)
1.
字符串
型
型