mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
MDL-65639 analytics: Rewording time-splitting methods
This commit is contained in:
parent
5045c4d491
commit
692d691da5
@ -1,6 +1,12 @@
|
||||
This files describes API changes in analytics sub system,
|
||||
information provided here is intended especially for developers.
|
||||
|
||||
=== 3.8 ===
|
||||
|
||||
* "Time-splitting method" have been replaced by "Analysis interval" for the language strings that are
|
||||
displayed in the Moodle UI. The name of several time-splitting methods have been updated according
|
||||
to the new description of the field.
|
||||
|
||||
=== 3.7 ===
|
||||
|
||||
* \core_analytics\regressor::evaluate_regression and \core_analytics\classifier::evaluate_classification
|
||||
|
@ -1983,17 +1983,17 @@ If \'plain text area\' is selected, a format for text input areas such as HTML o
|
||||
The list of available text editors is determined by the site administrator.';
|
||||
$string['texteditor'] = 'Use standard web forms';
|
||||
$string['textformat'] = 'Plain text format';
|
||||
$string['timesplitting:deciles'] = 'Tenths';
|
||||
$string['timesplitting:deciles'] = 'Last tenth';
|
||||
$string['timesplitting:deciles_help'] = 'This analysis interval divides the course into tenths (10 equal parts), with each prediction being based on the data of only the most recent previous tenth.';
|
||||
$string['timesplitting:decilesaccum'] = 'Tenths accumulative';
|
||||
$string['timesplitting:decilesaccum_help'] = 'This analysis interval divides the course into tenths (10 equal parts), with each prediction being based on the data of all previous tenths.';
|
||||
$string['timesplitting:decilesaccum'] = 'All previous tenths';
|
||||
$string['timesplitting:decilesaccum_help'] = 'This analysis interval divides the course into tenths (10 equal parts), with each prediction being based on the accumulated data of all previous tenths.';
|
||||
$string['timesplitting:nosplitting'] = 'No time limits';
|
||||
$string['timesplitting:nosplitting_help'] = 'No analysis interval is defined for this model.';
|
||||
$string['timesplitting:quarters'] = 'Quarters';
|
||||
$string['timesplitting:quarters'] = 'Last quarter';
|
||||
$string['timesplitting:quarters_help'] = 'This analysis interval divides the course into quarters (4 equal parts), with each prediction being based on the data of only the most recent previous quarter.';
|
||||
$string['timesplitting:quartersaccum'] = 'Quarters accumulative';
|
||||
$string['timesplitting:quartersaccum_help'] = 'This analysis interval divides the course into quarters (4 equal parts), with each prediction being based on the data of all previous quarters.';
|
||||
$string['timesplitting:singlerange'] = 'Single range';
|
||||
$string['timesplitting:quartersaccum'] = 'All previous quarters';
|
||||
$string['timesplitting:quartersaccum_help'] = 'This analysis interval divides the course into quarters (4 equal parts), with each prediction being based on the accumulated data of all previous quarters.';
|
||||
$string['timesplitting:singlerange'] = 'From start to end';
|
||||
$string['timesplitting:singlerange_help'] = 'This analysis interval considers the entire course as a single span.';
|
||||
$string['timesplitting:upcoming3days'] = 'Upcoming 3 days';
|
||||
$string['timesplitting:upcoming3days_help'] = 'This analysis interval generates predictions every 3 days. The indicators calculations will be based on the upcoming 3 days.';
|
||||
|
Loading…
x
Reference in New Issue
Block a user