记录数: {{ df.shape[0] | format_num }}
特征数: {{ df.shape[1] }}
内存使用: {{ (df.memory_usage(deep=True).sum() / 1024 / 1024) | round(2) }} MB
平均值: {{ df[col].mean() | round(2) }}
中位数: {{ df[col].median() | round(2) }}
标准差: {{ df[col].std() | round(2) }}
| {{ col }} | {% endfor %}
|---|
| {% if df[col].dtype in ['int64', 'float64'] %} {{ row[col] | round(2) if row[col] is not none else 'N/A' }} {% else %} {{ row[col] | default('N/A') }} {% endif %} | {% endfor %}