← スキル一覧に戻る

duckdb-parquet-lab-workflow
by crossxwill
The course emphasizes interpretable machine learning techniques and their applications in the financial services industry.
⭐ 5🍴 0📅 2026年1月21日
SKILL.md
name: duckdb-parquet-lab-workflow description: Use DuckDB to query Parquet files, inspect metadata, join tables, and convert results to pandas for analysis; commonly precedes ydata-eda-profiling for EDA on extracted tables.
DuckDB Parquet Lab Workflow
Purpose
Standardize the pattern of loading Parquet files into DuckDB, inspecting schema, running SQL joins, and converting results to pandas DataFrames.
Usage
- "load Parquet with DuckDB and join tables"
- "describe DuckDB table schema"
- "convert DuckDB query to pandas"
Instructions
- Read Parquet data with
duckdb.queryorduckdb.sqlusing SQL strings. - Inspect schema using
DESCRIBE SELECT * FROM <table>and display with.show(). - Use explicit joins with clear
LEFTorRIGHTsemantics to preserve row counts. - Convert results to pandas with
.to_df()for downstream modeling. - Use
./templates/duckdb_snippets.mdfor the standard SQL patterns.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です