python-极地 问答列表

为什么我不能直接在极坐标中写入 BytesIO 缓冲区?

作者:alex23ro 提问时间:11/15/2023

在熊猫中,我可以做这样的事情: buffer = BytesIO() df.write_parquet(buffer) # later, I can read the bytes buffer.r...

如何将 Pandas 过滤器转换为 Polars 过滤器?

作者:user22286335 提问时间:11/14/2023

我想将 python pandas 过滤器转换为 python polars 过滤器。 df.loc[:, df.dtypes == object] = df.loc[:, df.dtypes ==...

将 datetime 列转换为所需的日期时间格式,而不显式指定 from 格式

作者:user22286335 提问时间:11/16/2023

下面给出的过滤器是将我的列从 转换为:Trans Date%d/%m/%y%d-%m-%Y df = df.filter(df['Names'] == 'Polars').with_columns(p...

Python Polars 读取 pickle 文件时出错

作者:Danilo Setton 提问时间:11/17/2023

当我尝试执行以下代码片段时: import pickle f = open('my_file_path.pkl', 'rb') loaded_obj = pickle.load(f) f.clos...

如何在 Polars 中通过条件正则表达式标记字符串列中的项目

作者:blaylockbk 提问时间:11/17/2023

在 Polars 中,我正在处理一个 DataFrame,其中列中有凌乱的字符串数据。在此示例中,该列可以包含电话号码、电子邮件地址、州、邮政编码等(我的真实数据实际上有一百个或更多不同的“模式”存储...

在笔记本中导入 Polars 会导致内核崩溃

作者:Olivier Maxwell 提问时间:11/14/2023

导入 Polars polars==0.19.7 让我的内核崩溃 原木: import polars The Kernel crashed while executing code in the ...


共6条 当前第1页