fdo#81801 add first and third quartile to "Descriptive Statistics"

Change-Id: I7bfdb02a97d6a33c0a6e16b058cbb10b8ab2869b
This commit is contained in:
Tomaž Vajngerl
2014-11-15 15:55:43 +01:00
parent a6db5e6a2a
commit 817b0b51e7
3 changed files with 12 additions and 0 deletions

View File

@@ -42,6 +42,8 @@ static const StatisticCalculation lclCalcDefinitions[] =
{ STRID_CALC_STD_ERROR, "=SQRT(VAR(%RANGE%)/COUNT(%RANGE%))"},
{ STRID_CALC_MODE, "=MODE(%RANGE%)"},
{ STRID_CALC_MEDIAN, "=MEDIAN(%RANGE%)"},
{ STRID_CALC_FIRST_QUARTILE, "=QUARTILE(%RANGE%; 1)" },
{ STRID_CALC_THIRD_QUARTILE, "=QUARTILE(%RANGE%; 3)" },
{ STRID_CALC_VARIANCE, "=VAR(%RANGE%)"},
{ STRID_CALC_STD_DEVIATION, "=STDEV(%RANGE%)"},
{ STRID_CALC_KURTOSIS, "=KURT(%RANGE%)"},

View File

@@ -46,6 +46,8 @@
#define STRID_CALC_MAX 50
#define STRID_CALC_SUM 51
#define STRID_CALC_COUNT 52
#define STRID_CALC_FIRST_QUARTILE 53
#define STRID_CALC_THIRD_QUARTILE 54
#define STR_DESCRIPTIVE_STATISTICS_UNDO_NAME 60
#define STR_ANALYSIS_OF_VARIANCE_UNDO_NAME 61

View File

@@ -181,6 +181,14 @@ Resource RID_STATISTICS_DLGS
{
Text [ en-US ] = "Count";
};
String STRID_CALC_FIRST_QUARTILE
{
Text [ en-US ] = "First Quartile ";
};
String STRID_CALC_THIRD_QUARTILE
{
Text [ en-US ] = "Third Quartile";
};
/* RandomNumberGeneratorDialog */