Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

Add method to pivot results

未关闭
#23 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
5/5
预计耗时
一周以上
新手友好度
35/100
Issue 类型
功能
描述清晰度
基本清楚
活跃度
停滞
技术栈
python, sqlalchemy

调研方向

首先在 Python/SQLAlchemy 代码库中定位现有的 result 和 group-by 查询 API,并查看用户目前如何重塑结果。定义 pivot 方法的列名选项,以及存在缺失值(例如 source2 的 velocity)时的行为。完成的标准是示例数据按每个名称生成一行,并将参数值作为列。

由索引模型根据 Issue 内容生成。

描述

enhancement

In some situations, we may need to group results and shift values into individual columns.
The example that comes to mind is data sorted like this:

name     parameter   value
source1  C/O ratio     0.1
source1  velocity       -2
source1  mass           10
source2  C/O ratio     0.2
source2  mass            1

While this is fine, the user may want instead a table of the form:

name        C/O ratio  velocity  mass
source1     0.1        -2        10
source2     0.2        None      1

This can be done with some group by commands, but we may want to provide a method .pivot to handle this automatically for the user, with an option to pass along what column name should be the pivot.

主要语言
Python
星标
12
派生
5
PR 合并指标
30 天内没有已合并 PR

贡献指南

这个仓库没有索引到贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

astrodbtoolkit/AstrodbKit 的其他 Issue

查看 astrodbtoolkit/AstrodbKit 的全部 Issue

相似的 Issue

更多 Python Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。