npx skills add https://modelscope.cn/skills/@lingzhi227/table-generation
lingzhi227/claude-research-skills · Archived
table-generation
Generate publication-quality LaTeX tables from experimental results. Convert JSON/CSV data to booktabs-styled tables with bold best results, multi-row layouts, and proper captions. Use when creating result tables, comparison tables, or ablation tables for papers.
Installation
npx skills add lingzhi227/claude-research-skills --skill table-generation
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Programmatic canvas toolkit for creating, editing, and refining Excalidraw diagrams via MCP too…
1 installsAssess research idea novelty through systematic literature search. Multi-round search-evaluate …
1 installsCompile LaTeX papers to PDF with automatic error detection, chktex style checking, and citation…
1 installsDiscover scientific equations from data using LLM-guided evolutionary search (LLM-SR). Multi-is…
1 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Generates B2B/B2C leads by scraping Google Maps, websites, Instagram, TikTok, Facebook, LinkedI…
2.8K installsThis skill generates, creates, or builds brand voice guidelines from source materials. It shoul…
2.6K installs>- Use when the user wants to orchestrate defect image generation with NVIDIA Cosmos AnomalyGen…
1.9K installsSystematic stock screening and investment idea sourcing. Combines quantitative screens, themati…
9 installsGenerate AI videos on RunComfy via the `runcomfy` CLI — a smart router across the full video-mo…
391.4K installsGenerate and edit images on RunComfy via the `runcomfy` CLI — a smart router across the full im…
390.9K installsAlso in this package
Other skills from lingzhi227/claude-research-skills · top by installs.
npx skills add lingzhi227/claude-research-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,074 B -
docs
SUMMARY.md287 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
Table Generation
Convert experimental results into publication-ready LaTeX tables.
Input
$0— Table type:comparison,ablation,descriptive,custom$1— Data source: JSON file, CSV file, or inline data
Scripts
Generate LaTeX table from JSON/CSV
python ~/.claude/skills/table-generation/scripts/results_to_table.py \
--input results.json --type comparison \
--bold-best max --caption "Performance comparison" \
--label tab:main_results
Supports: comparison, ablation, descriptive, multi-dataset table types. Additional flags: --type multi-dataset for methods x datasets x metrics layout, --significance for p-value stars, --underline-second for second-best results.
References
- LaTeX table templates and examples:
~/.claude/skills/table-generation/references/table-templates.md
Table Types
comparison — Main results table
- Rows = methods (baselines + ours), Columns = metrics/datasets
- Bold the best result in each column
- Include mean +/- std when available
- Use
\multirowfor method categories (Supervised, Self-supervised, etc.)
ablation — Ablation study table
- Rows = variants (full model, minus component A, minus component B, ...)
- Columns = metrics
- Bold the full model result
- Use checkmarks for component presence
descriptive — Dataset/statistics table
- Dataset characteristics, hyperparameters, or summary statistics
- Clean formatting with proper units
custom — Free-form table
- User specifies layout and content
Required Packages
\usepackage{booktabs} % \toprule, \midrule, \bottomrule
\usepackage{multirow} % \multirow
\usepackage{multicol} % multi-column layouts
\usepackage{threeparttable} % table notes
Output Format
Always generate tables with:
booktabsrules (\toprule,\midrule,\bottomrule)\caption{}and\label{tab:...}- Bold best results using
\textbf{} - Table notes via
threeparttablewhen needed - Proper alignment (
lfor text,corrfor numbers)
Rules
- Only include numbers from actual experimental logs — never hallucinate results
- All numbers must match the data source exactly
- Use
$\pm$for standard deviations - Use
\underline{}for second-best results when appropriate - Keep tables compact — avoid unnecessary columns
- Use
table*for wide tables spanning two columns - Add glossary/notes for abbreviated column headers
Related Skills
- Upstream: [data-analysis](../data-analysis/), [experiment-code](../experiment-code/)
- Downstream: [paper-writing-section](../paper-writing-section/), [paper-compilation](../paper-compilation/)
- See also: [figure-generation](../figure-generation/)