{% extends "base.html" %} {% block content %}

API 文档

本文档提供了Rust PyFunc库中所有公开函数的详细说明和使用示例。这些示例基于真实的Python运行结果生成。

文本处理函数

{% for func in categorized_functions.text %}

{{ func.name }}

{{ func.parsed_doc.description|safe }}
查看详情
{% endfor %}

序列分析函数

{% for func in categorized_functions.sequence %}

{{ func.name }}

{{ func.parsed_doc.description|safe }}
查看详情
{% endfor %}

统计分析函数

{% for func in categorized_functions.statistics %}

{{ func.name }}

{{ func.parsed_doc.description|safe }}
查看详情
{% endfor %}

时间序列函数

{% for func in categorized_functions.time_series %}

{{ func.name }}

{{ func.parsed_doc.description|safe }}
查看详情
{% endfor %}

其他函数

{% for func in categorized_functions.other %}

{{ func.name }}

{{ func.parsed_doc.description|safe }}
查看详情
{% endfor %}
{% endblock %}