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
50 #define STR_DESCRIPTIVE_STATISTICS_UNDO_NAME 60
51 #define STR_ANALYSIS_OF_VARIANCE_UNDO_NAME 61
52 #define STR_CORRELATION_UNDO_NAME 62
53 #define STR_COVARIANCE_UNDO_NAME 63
54 #define STR_EXPONENTIAL_SMOOTHING_UNDO_NAME 64
55 #define STR_MOVING_AVERAGE_UNDO_NAME 65
58 #define STR_TTEST_UNDO_NAME 68
59 #define STR_FTEST_UNDO_NAME 69
61 #define STR_COLUMN_LABEL_TEMPLATE 70
62 #define STR_ROW_LABEL_TEMPLATE 71
64 #define STR_ANOVA_SINGLE_FACTOR_LABEL 80
65 #define STR_ANOVA_LABEL_GROUPS 81
66 #define STR_ANOVA_LABEL_BETWEEN_GROUPS 82
67 #define STR_ANOVA_LABEL_WITHIN_GROUPS 83
68 #define STR_ANOVA_LABEL_SOURCE_OF_VARIATION 84
69 #define STR_ANOVA_LABEL_SS 85
70 #define STR_ANOVA_LABEL_DF 86
71 #define STR_ANOVA_LABEL_MS 87
72 #define STR_ANOVA_LABEL_F 88
73 #define STR_ANOVA_LABEL_P_VALUE 89
74 #define STR_ANOVA_LABEL_F_CRITICAL 90
75 #define STR_ANOVA_LABEL_TOTAL 91
76 #define STR_ANOVA_TWO_FACTOR_LABEL 92
78 #define STR_CORRELATION_LABEL 100
79 #define STR_COVARIANCE_LABEL 101
80 #define STR_LABEL_ALPHA 102
81 #define STR_VARIABLE_1_LABEL 103
82 #define STR_VARIABLE_2_LABEL 104
84 #define STR_FTEST_OBSERVATIONS_LABEL 110
85 #define STR_FTEST_P_RIGHT_TAIL 111
86 #define STR_FTEST_F_CRITICAL_RIGHT_TAIL 112
87 #define STR_FTEST_P_LEFT_TAIL 113
88 #define STR_FTEST_F_CRITICAL_LEFT_TAIL 114
89 #define STR_FTEST_P_TWO_TAIL 115
90 #define STR_FTEST_F_CRITICAL_TWO_TAIL 116
92 #define STR_TTEST_PEARSON_CORRELATION 120
93 #define STR_TTEST_HYPOTHESIZED_MEAN_DIFFERENCE 121
94 #define STR_TTEST_OBSERVED_MEAN_DIFFERENCE 122
95 #define STR_TTEST_VARIANCE_OF_THE_DIFFERENCES 123
96 #define STR_TTEST_T_STAT 124
97 #define STR_TTEST_P_ONE_TAIL 125
98 #define STR_TTEST_T_CRITICAL_ONE_TAIL 126
99 #define STR_TTEST_P_TWO_TAIL 127
100 #define STR_TTEST_T_CRITICAL_TWO_TAIL 128
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */