mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
Feature: Paired t-test table visualization (#3473)
* Feature: paired t-test table viz * Added unit tests for viz
This commit is contained in:
committed by
Maxime Beauchemin
parent
7d934e7246
commit
c629282ec4
@@ -1370,5 +1370,26 @@ export const controls = {
|
||||
description: t('The color scheme for rendering chart'),
|
||||
schemes: ALL_COLOR_SCHEMES,
|
||||
},
|
||||
|
||||
significance_level: {
|
||||
type: 'TextControl',
|
||||
label: 'Significance Level',
|
||||
default: 0.05,
|
||||
description: 'Threshold alpha level for determining significance',
|
||||
},
|
||||
|
||||
pvalue_precision: {
|
||||
type: 'TextControl',
|
||||
label: 'p-value precision',
|
||||
default: 6,
|
||||
description: 'Number of decimal places with which to display p-values',
|
||||
},
|
||||
|
||||
liftvalue_precision: {
|
||||
type: 'TextControl',
|
||||
label: 'Lift % precision',
|
||||
default: 4,
|
||||
description: 'Number of decimal places with which to display lift values',
|
||||
},
|
||||
};
|
||||
export default controls;
|
||||
|
||||
Reference in New Issue
Block a user