|
@@ -78,12 +78,29 @@ export default {
|
|
|
add_more_param: 'Add more parameters',
|
|
|
create_edb_time_index: 'Generate Indicator Time Series',
|
|
|
null_val_deal: 'Null Value Handling',
|
|
|
+ null_val_deal_0:'View Nearest Value Within 35 Days Before and After',
|
|
|
+ null_val_deal_1:'Do Not Calculate',
|
|
|
+ null_val_deal_2:'Forward Fill',
|
|
|
+ null_val_deal_3:'Backward Fill',
|
|
|
+ null_val_deal_4:'Equal to Zero',
|
|
|
+ null_val_del_hint:`1. find the latest value of 35 days before and after: When there is no value on the date series participating in the calculation, the index to find the nearest value forward/back as the value of the day to calculate, traversal allows across the year, up to 35 days before, up to 35 days after <br>
|
|
|
+ 2. do not calculate: as long as an indicator has no value on a certain date (that is, null value), the calculated indicator has no value on that date <br>
|
|
|
+ 3. Fill the previous value: empty value is first filled with the most recent previous value. When there is no previous value, fill with the last value <br>
|
|
|
+ 4. post-value filling: the null value is first filled with the most recent post-value, when there is no previous value, fill with the post-value <br>
|
|
|
+ 5. equal to 0: the null value is 0 value to participate in the calculation <br>
|
|
|
+ Note: The processing of missing values here applies to all time periods of the data`,
|
|
|
max_null_val: 'MAX、MIN Null Value Handling',
|
|
|
+ max_null_val_hint:`If there is a null value in the MAX and MIN formulas, handle it according to the following rules: <br>
|
|
|
+ 1. equal to 0, null value with 0 to participate in the calculation; <br>
|
|
|
+ 2. Skip the null value, remove the null value indicator, and calculate the remaining indicators. If all indicators of the date are null values, the date has no value;`,
|
|
|
calculate_formula: 'Calculation Formula',
|
|
|
input_formula_msg: 'Please input formula',
|
|
|
input_formula_valid: 'Calculation Formula can not be blank',
|
|
|
input_date_msg: 'Select date',
|
|
|
formula_examp: 'Formula Example',
|
|
|
+ formula_examp_hint:`1. support new segments, to achieve different segments use different formulas, if no new segments, all date sequences are calculated with a unified formula <br>
|
|
|
+ 2. A new formula and time node need to be configured to add segments. The new formula is used before (excluding) the time node, and the configured formula is used after (including) the time node.
|
|
|
+ 3. the segmented time node is not allowed to repeat, not allowed to exceed the date interval of the first indicator`,
|
|
|
func_examp: 'Function Support',
|
|
|
add_segm:'Add segment',
|
|
|
num_overrun_msg: 'The number of indicators added has reached the limit.',
|