diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-07-18 21:44:54 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-07-19 16:57:38 +0200 |
commit | fa20e0dd67c1da8fe8653f163e0fc6743934e7ae (patch) | |
tree | 44e2dd34dc7b836055541ce55c9d1abc60cf0492 /sc/inc | |
parent | c7005a1b5b89392b82e20f952814fa6d5bc5b06e (diff) |
fdo#66477 Add descriptive statistics calculation to Calc.
New menu entry in "Data>>Statistics>>Descriptive Statistics..." to
quickly calculate basic statistics for a row of data. These are
Mean, Standard Error, Mode, Median, Variance, Standard Deviation,
Kurtosis, Skewness, Range, Minimum, Maximum, Sum and Count.
Change-Id: I7c4a75adf7731f42f9c7f8e741ff1b5fa245c1c8
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/globstr.hrc | 19 | ||||
-rw-r--r-- | sc/inc/sc.hrc | 1 |
2 files changed, 19 insertions, 1 deletions
diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc index 458e775a1a10..7a7cf0a0deb9 100644 --- a/sc/inc/globstr.hrc +++ b/sc/inc/globstr.hrc @@ -704,7 +704,24 @@ #define STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS 571 #define STR_RNG_PARAMETER_STANDARD_NU_VALUE 572 -#define STR_SAMPLING_UNDO_NAME 573 +#define STR_SAMPLING_UNDO_NAME 573 + +#define SID_CALC_MEAN 574 +#define SID_CALC_STD_ERROR 575 +#define SID_CALC_MODE 576 +#define SID_CALC_MEDIAN 577 +#define SID_CALC_VARIANCE 578 +#define SID_CALC_STD_DEVIATION 579 +#define SID_CALC_KURTOSIS 580 +#define SID_CALC_SKEWNESS 581 +#define SID_CALC_RANGE 582 +#define SID_CALC_MIN 583 +#define SID_CALC_MAX 584 +#define SID_CALC_SUM 585 +#define SID_CALC_COUNT 586 + +#define STR_DESCRIPTIVE_STATISTICS_UNDO_NAME 587 + #endif diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index 35e6d05fa656..d075e045d235 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -254,6 +254,7 @@ #define SID_OPENDLG_RANDOM_NUMBER_GENERATOR (SC_MESSAGE_START + 70) #define SID_SAMPLING_DIALOG (SC_MESSAGE_START + 71) +#define SID_DESCRIPTIVE_STATISTICS_DIALOG (SC_MESSAGE_START + 72) // functions |