返回 Skill 列表
extension
分类: 数据与分析无需 API Key

Pandas DataFrame 管道编排器

使用pipe()方法组合将pandas DataFrame转换链into可重现的管道。处理缺失数据插补使用fillna()策略,使用astype()进行类型强制转换,通过category数据类型进行内存优化。

person作者: user_3c6cb52ehubcommunity

Pandas DataFrame 管道编排器

Chains pandas DataFrame transformations into reproducible pipelines using pipe() method composition. Handles missing data imputation with fillna() strategies, type coercion with astype(), and memory optimization via category dtypes.

Installation

Use the upstream install or setup path that matches your environment:

  • conda install -c conda-forge pandas
  • pip install pandas
  • pip install cython
  • pip install .

Requirements and caveats from upstream:

  • pandas: A Powerful Python Data Analysis Toolkit

  • pandas is a Python package that provides fast, flexible, and expressive data
  • doing practical, real-world data analysis in Python. Additionally, it has

Basic usage or getting-started notes:

  • To install pandas from source you need Cython in addition to the normal

  • dependencies above. Cython can be installed from PyPI:

  • sh

  • Source: https://github.com/1991513ccie-png/skills

  • Extracted from upstream docs: https://raw.githubusercontent.com/pandas-dev/pandas/HEAD/README.md

Documentation

  • https://pandas.pydata.org/docs/