We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CONTROLS:
DYNAMIC THESHOLDS
Model Train section
Model Tuning section
ACTIONS
Train execution - caused by Train button:
MODEL <- dynamicThreshold.train( ts.agg = list( data.agg = <aggregated time series>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), train.params = list(mode = 'simple', sensitivity = <Sensitivity>), type_th = 'Both')
MODEL <- dynamicThreshold.train( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), train.params = list(mode = 'expert', params = list(agg_th = <Thresholds Aggregation Level >, local_trend = <Local Trend Basis>, similar = <Neighbours similarity>)), type_th ='Both')
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', correction =list("Low" = c(coef = 0, scale = 1), "High" = c(coef = 0, scale = 1)))
plot_time_series(RES, treshhold_type = 'both')
ANAYSIS.STAT = anomalies.stat(ad_results = RES, data, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>)
anomalies.detail(ANAYSIS.STAT$ad_res[index,], data, ts_func = <aggregation function>)
Model Manual Tuning - caused by Correction and Scale sliders:
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', correction =list("Low" = c(coef = <Low-type Anomalies: Correction>, scale = <Low-type Anomalies: Scale>), "High" = c(coef = < High-type Anomalies: Correction >, scale = <High-type Anomalies: Scale>)))
Model Auto Tuning - caused by Auto-Tune button:
COEF = dynamicThreshold.autoturn( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', p_anomalies = <Precent of anomaly cases for auto turning>)
<Low-type Anomalies: Correction> = COEF$Low[1]
<Low-type Anomalies: Scale> = COEF$Low[2]
<High-type Anomalies: Correction> = COEF$High[1]
<High-type Anomalies: Scale> = COEF$High[2]
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model_ = MODEL, type_th = 'Both', correction =list("Low" = c(coef = < Low-type Anomalies: Correction >, scale = < Low-type Anomalies: Scale >), "High" = c(coef = <High-type Anomalies: Correction>, scale = <High-type Anomalies: Scale>)))
PROPHET Model Train section
ACTIONS Train execution - caused by Train button:
MODEL <- model_prophet_train_test(< aggregated time series - train >, < aggregated time series - test>, method = 'train')
MODEL = model_prophet_train_test( < aggregated time series - train >, < aggregated time series - test>, yearly=< yearly seasonality >, weekly=< weekly seasonality >, daily=< daily seasonality >, interval_width=< uncertainty intervals > method = 'train')
RES <- model_prophet_new_interval(MODEL$data_train, method='Both')
RES_tune <- model_prophet_new_interval(RES, percent_up=< Scale UP>, percent_low=< Scale LOW>, method='Both')
plot_time_series(RES_tune, treshhold_type ='both')
ANAYSIS.STAT = anomalies.stat(ad_results = RES, data, ts_type=< aggregation type - days, hours, etc >, ts_val=< aggregation step >)
anomalies.detail(aANAYSIS.STAT$ad_res[index,], data, ts_func = < aggregation function >)
Model Manual Tuning - caused by Scale sliders:
RES <- model_prophet_new_interval( MODEL$data_train, percent_up= < Low-type Anomalies Scale >, percent_low= < High-type Anomalies Scale >, method='Both')
The text was updated successfully, but these errors were encountered:
vsolskyy
No branches or pull requests
CONTROLS:
DYNAMIC THESHOLDS
Model Train section
Model Tuning section
ACTIONS
Train execution - caused by Train button:
MODEL <- dynamicThreshold.train( ts.agg = list( data.agg = <aggregated time series>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), train.params = list(mode = 'simple', sensitivity = <Sensitivity>), type_th = 'Both')
MODEL <- dynamicThreshold.train( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), train.params = list(mode = 'expert', params = list(agg_th = <Thresholds Aggregation Level >, local_trend = <Local Trend Basis>, similar = <Neighbours similarity>)), type_th ='Both')
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', correction =list("Low" = c(coef = 0, scale = 1), "High" = c(coef = 0, scale = 1)))
plot_time_series(RES, treshhold_type = 'both')
ANAYSIS.STAT = anomalies.stat(ad_results = RES, data, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>)
anomalies.detail(ANAYSIS.STAT$ad_res[index,], data, ts_func = <aggregation function>)
Model Manual Tuning - caused by Correction and Scale sliders:
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', correction =list("Low" = c(coef = <Low-type Anomalies: Correction>, scale = <Low-type Anomalies: Scale>), "High" = c(coef = < High-type Anomalies: Correction >, scale = <High-type Anomalies: Scale>)))
Model Auto Tuning - caused by Auto-Tune button:
COEF = dynamicThreshold.autoturn( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model = MODEL, type_th = 'Both', p_anomalies = <Precent of anomaly cases for auto turning>)
<Low-type Anomalies: Correction> = COEF$Low[1]
<Low-type Anomalies: Scale> = COEF$Low[2]
<High-type Anomalies: Correction> = COEF$High[1]
<High-type Anomalies: Scale> = COEF$High[2]
RES = dynamicThreshold.apply( ts.agg = list( data.agg = <aggregated time series - train set>, ts_type=<aggregation type - days, hours, etc>, ts_val=<aggregation step>, ts_func = <aggregation function>), model_ = MODEL, type_th = 'Both', correction =list("Low" = c(coef = < Low-type Anomalies: Correction >, scale = < Low-type Anomalies: Scale >), "High" = c(coef = <High-type Anomalies: Correction>, scale = <High-type Anomalies: Scale>)))
PROPHET
Model Train section
Model Tuning section
ACTIONS
Train execution - caused by Train button:
MODEL <- model_prophet_train_test(< aggregated time series - train >, < aggregated time series - test>, method = 'train')
MODEL = model_prophet_train_test( < aggregated time series - train >, < aggregated time series - test>, yearly=< yearly seasonality >, weekly=< weekly seasonality >, daily=< daily seasonality >, interval_width=< uncertainty intervals > method = 'train')
RES <- model_prophet_new_interval(MODEL$data_train, method='Both')
RES_tune <- model_prophet_new_interval(RES, percent_up=< Scale UP>, percent_low=< Scale LOW>, method='Both')
plot_time_series(RES, treshhold_type = 'both')
orplot_time_series(RES_tune, treshhold_type ='both')
ANAYSIS.STAT = anomalies.stat(ad_results = RES, data, ts_type=< aggregation type - days, hours, etc >, ts_val=< aggregation step >)
anomalies.detail(aANAYSIS.STAT$ad_res[index,], data, ts_func = < aggregation function >)
Model Manual Tuning - caused by Scale sliders:
RES <- model_prophet_new_interval( MODEL$data_train, percent_up= < Low-type Anomalies Scale >, percent_low= < High-type Anomalies Scale >, method='Both')
The text was updated successfully, but these errors were encountered: