Agent skill
great-tables-1-keep-tables-focused
Sub-skill of great-tables: 1. Keep Tables Focused (+3).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/data/analysis/great-tables/1-keep-tables-focused
SKILL.md
1. Keep Tables Focused (+3)
1. Keep Tables Focused
# GOOD: Select relevant columns
df_display = df[["Name", "Revenue", "Growth"]]
table = GT(df_display)
# AVOID: Displaying too many columns
# table = GT(df) # If df has 20+ columns
2. Use Appropriate Formatting
# GOOD: Match format to data type
table = (
GT(df)
.fmt_currency(columns="Price", currency="USD")
.fmt_percent(columns="Growth", decimals=1)
.fmt_integer(columns="Units", use_seps=True)
)
# AVOID: Generic number format for everything
3. Limit Rows for Display
# GOOD: Show summary or top N
df_top10 = df.nlargest(10, "Revenue")
table = GT(df_top10)
# AVOID: Displaying thousands of rows
4. Use Color Sparingly
# GOOD: Highlight key information
table.data_color(
columns="Performance",
palette=["#fee2e2", "#dcfce7"], # Subtle colors
domain=[0, 100]
)
# AVOID: Rainbow color schemes
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?