Skip to content

Commit 62ae2b9

Browse files
ebellumatnicolaskruchten
authored andcommitted
Updated locales pt, zh and es to support all default agregators. (#983)
* Updated locales pt, zh and es to support all default agregators. * Update pivot.es.coffee * Update pivot.es.coffee * Added support to render a Donut Chart in Plotly. * Revert "Added support to render a Donut Chart in Plotly." This reverts commit 5082a2f.
1 parent e6237e3 commit 62ae2b9

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

locales/pivot.es.coffee

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ callWithJQuery ($) ->
3838
"Suma": tpl.sum(frFmt)
3939
"Suma de enteros": tpl.sum(frFmtInt)
4040
"Promedio": tpl.average(frFmt)
41+
"Mediana": tpl.median(frFmt)
42+
"Diferencia": tpl.var(1, frFmt)
43+
"Desviación estándar de la muestra": tpl.stdev(1, frFmt)
4144
"Mínimo": tpl.min(frFmt)
4245
"Máximo": tpl.max(frFmt)
46+
"Primero": tpl.first(frFmt),
47+
"Pasado": tpl.last(frFmt),
4348
"Suma de sumas": tpl.sumOverSum(frFmt)
4449
"Cota 80% superior": tpl.sumOverSumBound80(true, frFmt)
4550
"Cota 80% inferior": tpl.sumOverSumBound80(false, frFmt)

locales/pivot.pt.coffee

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ callWithJQuery ($) ->
4242
"Soma": tpl.sum(frFmt)
4343
"Soma de Inteiros": tpl.sum(frFmtInt)
4444
"Média": tpl.average(frFmt)
45+
"Mediana": tpl.median(frFmt)
46+
"Variancia": tpl.var(1, frFmt)
47+
"Desvio Padrão da Amostra": tpl.stdev(1, frFmt)
4548
"Mínimo": tpl.min(frFmt)
4649
"Máximo": tpl.max(frFmt)
4750
"Primeiro": tpl.first(frFmt),

locales/pivot.zh.coffee

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,13 @@ callWithJQuery ($) ->
4242
"求和": tpl.sum(frFmt)
4343
"求和后取整": tpl.sum(frFmtInt)
4444
"平均值": tpl.average(frFmt)
45+
"中位数": tpl.median(frFmt)
46+
"方差": tpl.var(1, frFmt)
47+
"样本标准偏差": tpl.stdev(1, frFmt)
4548
"最小值": tpl.min(frFmt)
4649
"最大值": tpl.max(frFmt)
50+
"第一": tpl.first(frFmt)
51+
"最后": tpl.last(frFmt)
4752
"两和之比": tpl.sumOverSum(frFmt)
4853
"二项分布:置信度为80%时的区间上限": tpl.sumOverSumBound80(true, frFmt)
4954
"二项分布:置信度为80%时的区间下限": tpl.sumOverSumBound80(false, frFmt)

0 commit comments

Comments
 (0)