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 20
25 #define STR_RNG_PARAMETER_MAXIMUM 21
26 #define STR_RNG_PARAMETER_MEAN 22
27 #define STR_RNG_PARAMETER_STANDARD_DEVIATION 23
28 #define STR_RNG_PARAMETER_STANDARD_MEDIAN 24
29 #define STR_RNG_PARAMETER_STANDARD_SIGMA 25
30 #define STR_RNG_PARAMETER_STANDARD_PROBABILITY 26
31 #define STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS 27
32 #define STR_RNG_PARAMETER_STANDARD_NU_VALUE 28
34 #define STR_SAMPLING_UNDO_NAME 39
36 #define STRID_CALC_MEAN 40
37 #define STRID_CALC_STD_ERROR 41
38 #define STRID_CALC_MODE 42
39 #define STRID_CALC_MEDIAN 43
40 #define STRID_CALC_VARIANCE 44
41 #define STRID_CALC_STD_DEVIATION 45
42 #define STRID_CALC_KURTOSIS 46
43 #define STRID_CALC_SKEWNESS 47
44 #define STRID_CALC_RANGE 48
45 #define STRID_CALC_MIN 49
46 #define STRID_CALC_MAX 50
47 #define STRID_CALC_SUM 51
48 #define STRID_CALC_COUNT 52
49 #define STRID_CALC_FIRST_QUARTILE 53
50 #define STRID_CALC_THIRD_QUARTILE 54
52 #define STR_DESCRIPTIVE_STATISTICS_UNDO_NAME 60
53 #define STR_ANALYSIS_OF_VARIANCE_UNDO_NAME 61
54 #define STR_CORRELATION_UNDO_NAME 62
55 #define STR_COVARIANCE_UNDO_NAME 63
56 #define STR_EXPONENTIAL_SMOOTHING_UNDO_NAME 64
57 #define STR_MOVING_AVERAGE_UNDO_NAME 65
59 #define STR_TTEST_UNDO_NAME 67
61 #define STR_FTEST_UNDO_NAME 69
63 #define STR_ZTEST_UNDO_NAME 71
64 #define STR_CHI_SQUARE_TEST 72
66 #define STR_COLUMN_LABEL_TEMPLATE 100
67 #define STR_ROW_LABEL_TEMPLATE 101
69 #define STR_ANOVA_SINGLE_FACTOR_LABEL 110
70 #define STR_ANOVA_LABEL_GROUPS 111
71 #define STR_ANOVA_LABEL_BETWEEN_GROUPS 112
72 #define STR_ANOVA_LABEL_WITHIN_GROUPS 113
73 #define STR_ANOVA_LABEL_SOURCE_OF_VARIATION 114
74 #define STR_ANOVA_LABEL_SS 115
75 #define STR_ANOVA_LABEL_DF 116
76 #define STR_ANOVA_LABEL_MS 117
77 #define STR_ANOVA_LABEL_F 118
78 #define STR_ANOVA_LABEL_P_VALUE 119
79 #define STR_ANOVA_LABEL_F_CRITICAL 120
80 #define STR_ANOVA_LABEL_TOTAL 121
81 #define STR_ANOVA_TWO_FACTOR_LABEL 122
83 #define STR_CORRELATION_LABEL 140
84 #define STR_COVARIANCE_LABEL 141
85 #define STR_LABEL_ALPHA 142
86 #define STR_VARIABLE_1_LABEL 143
87 #define STR_VARIABLE_2_LABEL 144
88 #define STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL 145
89 #define STR_OBSERVATIONS_LABEL 146
90 #define STR_OBSERVED_MEAN_DIFFERENCE_LABEL 147
91 #define STR_DEGREES_OF_FREEDOM_LABEL 148
92 #define STR_P_VALUE_LABEL 149
93 #define STR_CRITICAL_VALUE_LABEL 150
94 #define STR_TEST_STATISTIC_LABEL 151
96 #define STR_FTEST_P_RIGHT_TAIL 200
97 #define STR_FTEST_F_CRITICAL_RIGHT_TAIL 201
98 #define STR_FTEST_P_LEFT_TAIL 202
99 #define STR_FTEST_F_CRITICAL_LEFT_TAIL 203
100 #define STR_FTEST_P_TWO_TAIL 204
101 #define STR_FTEST_F_CRITICAL_TWO_TAIL 205
103 #define STR_TTEST_PEARSON_CORRELATION 220
104 #define STR_TTEST_VARIANCE_OF_THE_DIFFERENCES 222
105 #define STR_TTEST_T_STAT 223
106 #define STR_TTEST_P_ONE_TAIL 224
107 #define STR_TTEST_T_CRITICAL_ONE_TAIL 225
108 #define STR_TTEST_P_TWO_TAIL 226
109 #define STR_TTEST_T_CRITICAL_TWO_TAIL 227
111 #define STR_ZTEST_KNOWN_VARIANCE 240
112 #define STR_ZTEST_Z_VALUE 241
113 #define STR_ZTEST_P_ONE_TAIL 242
114 #define STR_ZTEST_Z_CRITICAL_ONE_TAIL 243
115 #define STR_ZTEST_P_TWO_TAIL 244
116 #define STR_ZTEST_Z_CRITICAL_TWO_TAIL 245
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */