mirror of
https://github.com/apache/superset.git
synced 2026-07-27 00:52:33 +00:00
Guards the "headers render but no body rows" failure mode by driving the real transformProps -> PairedTTest pipeline with a realistic flat /api/v1/chart/data timeseries response (main.birth_names shape): asserts transformProps keys the reshaped data by metric label with one series per group tuple, and that the rendered tables contain a body row per group, including when optional precision/significance controls are absent. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@superset-ui/plugin-chart-paired-t-test
This plugin provides Paired T Test for Superset.
Usage
Configure key, which can be any string, and register the plugin. This key will be used to
lookup this chart throughout the app.
import PairedTTestChartPlugin from '@superset-ui/plugin-chart-paired-t-test';
new PairedTTestChartPlugin().configure({ key: 'paired-t-test' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="paired-t-test"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>