@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative T8 markdown syntax that can be used to describe the content of data interpretation reports.
88 lines (85 loc) • 1.79 kB
JavaScript
'use strict';
exports.PhraseType = void 0;
(function (PhraseType) {
PhraseType["TEXT"] = "text";
PhraseType["ENTITY"] = "entity";
PhraseType["CUSTOM"] = "custom";
})(exports.PhraseType || (exports.PhraseType = {}));
var EntityType = [
/**
* @description main indicator value 主指标名
* @example DAU
* */
'metric_name',
/**
* @description main indicator name 主指标值
* @example 1.23 million
* */
'metric_value',
/**
* @description other indicator value 其他指标值
* @example
* */
'other_metric_value',
/**
* @description contribution ratio 贡献度
* @example 23%
* */
'contribute_ratio',
/**
* @description delate value 变化值
* @example -1.2
* */
'delta_value',
/**
* @description ratio value 变化率
* @example +23%
* */
'ratio_value',
/**
* @description trend description 趋势描述
* @example up/down
* */
'trend_desc',
/**
* @description dimension value 维值
* @example sex = man
* */
'dim_value',
/**
* @description time description 时间描述
* @example 2021-11-19
* */
'time_desc',
/**
* @description proportion 占比
* @example 20%
* */
'proportion',
/**
* @description rank
*/
'rank',
/**
* @description difference
* */
'difference',
/**
* @description anomaly
* */
'anomaly',
/**
* @description association
* */
'association',
/**
* @description distribution
* */
'distribution',
/**
* @description seasonality
* */
'seasonality',
];
exports.EntityType = EntityType;
//# sourceMappingURL=phrase.js.map