1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
13 #define STR_UNDO_DISTRIBUTION_TEMPLATE 1
14 #define STR_DISTRIBUTION_UNIFORM_REAL 2
15 #define STR_DISTRIBUTION_UNIFORM_INTEGER 3
16 #define STR_DISTRIBUTION_NORMAL 4
17 #define STR_DISTRIBUTION_CAUCHY 5
18 #define STR_DISTRIBUTION_BERNOULLI 6
19 #define STR_DISTRIBUTION_BINOMIAL 7
20 #define STR_DISTRIBUTION_NEGATIVE_BINOMIAL 8
21 #define STR_DISTRIBUTION_CHI_SQUARED 9
22 #define STR_DISTRIBUTION_GEOMETRIC 10
24 #define STR_RNG_PARAMETER_MINIMUM 11
25 #define STR_RNG_PARAMETER_MAXIMUM 12
26 #define STR_RNG_PARAMETER_MEAN 13
27 #define STR_RNG_PARAMETER_STANDARD_DEVIATION 14
28 #define STR_RNG_PARAMETER_STANDARD_MEDIAN 15
29 #define STR_RNG_PARAMETER_STANDARD_SIGMA 16
30 #define STR_RNG_PARAMETER_STANDARD_PROBABILITY 17
31 #define STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS 18
32 #define STR_RNG_PARAMETER_STANDARD_NU_VALUE 19
34 #define STR_SAMPLING_UNDO_NAME 20
36 #define STRID_CALC_MEAN 21
37 #define STRID_CALC_STD_ERROR 22
38 #define STRID_CALC_MODE 23
39 #define STRID_CALC_MEDIAN 24
40 #define STRID_CALC_VARIANCE 25
41 #define STRID_CALC_STD_DEVIATION 26
42 #define STRID_CALC_KURTOSIS 27
43 #define STRID_CALC_SKEWNESS 28
44 #define STRID_CALC_RANGE 29
45 #define STRID_CALC_MIN 30
46 #define STRID_CALC_MAX 31
47 #define STRID_CALC_SUM 32
48 #define STRID_CALC_COUNT 33
50 #define STR_DESCRIPTIVE_STATISTICS_UNDO_NAME 34
51 #define STR_ANALYSIS_OF_VARIANCE_UNDO_NAME 35
52 #define STR_CORRELATION_UNDO_NAME 36
53 #define STR_COVARIANCE_UNDO_NAME 37
54 #define STR_EXPONENTIAL_SMOOTHING_UNDO_NAME 38
55 #define STR_MOVING_AVERAGE_UNDO_NAME 39
57 #define STR_COLUMN_LABEL_TEMPLATE 41
58 #define STR_ROW_LABEL_TEMPLATE 42
60 #define STR_ANOVA_SINGLE_FACTOR_LABEL 43
61 #define STR_ANOVA_LABEL_GROUPS 44
62 #define STR_ANOVA_LABEL_BETWEEN_GROUPS 45
63 #define STR_ANOVA_LABEL_WITHIN_GROUPS 46
64 #define STR_ANOVA_LABEL_SOURCE_OF_VARIATION 47
65 #define STR_ANOVA_LABEL_SS 48
66 #define STR_ANOVA_LABEL_DF 49
67 #define STR_ANOVA_LABEL_MS 50
68 #define STR_ANOVA_LABEL_F 51
69 #define STR_ANOVA_LABEL_P_VALUE 52
70 #define STR_ANOVA_LABEL_F_CRITICAL 53
71 #define STR_ANOVA_LABEL_TOTAL 54
73 #define STR_CORRELATION_LABEL 55
74 #define STR_COVARIANCE_LABEL 56
75 #define STR_LABEL_ALPHA 57
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */