Feature: Paired t-test table visualization (#3473)

* Feature: paired t-test table viz

* Added unit tests for viz
This commit is contained in:
Jeff Niu
2017-09-26 15:11:35 -07:00
committed by Maxime Beauchemin
parent 7d934e7246
commit c629282ec4
9 changed files with 582 additions and 0 deletions

View File

@@ -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;