编辑 | blame | 历史 | 原始文档

---
title: Tabular Data
type: templates
category: Structured Data Parsing
cat: structured-data-parsing
order: 505
meta_title: Tabular Data Labeling Template

meta_description: Template for labeling tabular data with Label Studio for your machine learning and data science projects.

If you need to validate data stored in a table, use this template to display data in a tabular format and ask questions about the contents of the table.

Interactive Template Preview

Labeling Configuration

<View>
    <Header value="Table with {key: value} pairs"/>
    <Table name="table" value="$item"/>
    <Choices name="choice" toName="table">
        <Choice value="Correct"/>
        <Choice value="Incorrect"/>
    </Choices>
</View>

About the labeling configuration

All labeling configurations must be wrapped in View tags.

Use the Header tag to provide details to annotators:
xml <Header value="Table with {key: value} pairs"/>

Use the Table object tag to display tabular data:
xml <Table name="table" value="$item"/>

Use the Choices control tag to classify the table contents:
xml <Choices name="choice" toName="table"> <Choice value="Correct"/> <Choice value="Incorrect"/> </Choices>

Related tags