Pretty-print tabular data in Python with extensive formatting options and output format support.
84
Pending
Does it follow best practices?
Impact
84%
1.12xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
{
"context": "This criteria evaluates how effectively the engineer uses the tabulate package to generate reports in multiple output formats. The focus is on proper use of tabulate's format selection capabilities and correct handling of different output formats.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses tabulate function",
"description": "Solution imports and uses the tabulate() function from the tabulate package",
"max_score": 15
},
{
"name": "GitHub format implementation",
"description": "Uses tablefmt='github' parameter to generate GitHub Flavored Markdown tables",
"max_score": 20
},
{
"name": "PostgreSQL format implementation",
"description": "Uses tablefmt='psql' parameter to generate PostgreSQL-style console output",
"max_score": 20
},
{
"name": "HTML format implementation",
"description": "Uses tablefmt='html' parameter to generate HTML table markup",
"max_score": 20
},
{
"name": "LaTeX format implementation",
"description": "Uses tablefmt='latex' parameter to generate LaTeX tabular format",
"max_score": 20
},
{
"name": "Header extraction",
"description": "Uses headers='keys' parameter or passes appropriate header list to extract column headers from dictionary keys",
"max_score": 5
}
]
}docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10