Add your description here
Project description
pdcleaner
Description
用于清洗pandas数据表格
安装
# 安装
pip install pdcleaner
# 升级
pip install --upgrade pdcleaner
# 卸载
pip uninstall pdcleaner
使用示例
import pandas as pd
from pdcleaner import DataSet
def test_clean_data():
# 生成测试数据
test_data = {
'Column 1': [' 1,234 ', '-1,253.8', "增长369,666.0", "1,2,3", None, '-'],
'Column 2': ['20%', '98.88%', "1,235.69%", "增长10%", '-10%', '50%'],
'Column 3': [' extra space ', 'no change', "'single'", "multi\nline\rtext", '1,234.56', '25%'],
'数据写入时间2': ['2023-10-01 12:34:56', '2023-10-02 13:45:56', '2023-10-03 14:56:57', '2023-10-04 15:07:58', '2023-10-05 16:18:59', '2023-10-06 17:29:60']
}
df = pd.DataFrame(test_data)
# 调用 clean_data 函数
cleaned_df = DataSet.clean_data(df, drop_cols=['数据写入时间2'], rename_cols={'Column 1': 'New Column 1'}, add_time=True)
print(cleaned_df)
if __name__ == '__main__':
test_clean_data()
参数说明
参数:
df (pd.DataFrame): 输入的数据框。
drop_cols (list, optional): 需要删除的列名列表。默认为 None。
rename_cols (dict, optional): 需要重命名的列名字典,键为旧列名,值为新列名。默认为 None。
add_time (bool, optional): 是否添加数据写入时间列。默认为 False。
返回:
pd.DataFrame: 清洗后的数据框。
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pdcleaner-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pdcleaner-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f7f9fe80d7b449274293f3d5813af34ecac1eb73a44c595da57aa426aa5d8d9
|
|
| MD5 |
d68655f1401dae80bc7b81dda8e3de6b
|
|
| BLAKE2b-256 |
ea31f4096d4ceb526146303cdcabc24f024eb56796b4203de168da90e7e29362
|