بنقرة واحدة
td-acf
Auto-correlation analysis for time series dependency and pattern detection
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Auto-correlation analysis for time series dependency and pattern detection
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analysis of variance for comparing group means
ARIMA-based time series forecasting for trend and seasonal predictions
ARIMA parameter estimation for seasonal and non-seasonal AR, MA, ARMA, and ARIMA models
Marketing attribution modeling and analysis
Automated ARIMA model selection and forecasting
Change point detection in time series for structural breaks
| name | td-acf |
| description | Auto-correlation analysis for time series dependency and pattern detection |
| Skill Name | Teradata Auto-Correlation Function |
|---|---|
| Description | Auto-correlation analysis for time series dependency and pattern detection |
| Category | UAF Time Series |
| Function | TD_ACF |
| Framework | Teradata Unbounded Array Framework (UAF) |
TD_ACF uses the EXECUTE FUNCTION INTO VOLATILE ART(result_table) pattern:
EXECUTE FUNCTION COLUMNS(OUT_{value_col} AS {value_col}) INTO VOLATILE ART(acf_results)
TD_ACF(
SERIES_SPEC(
TABLE_NAME({input_table}),
SERIES_ID({series_id_col}),
ROW_AXIS(TIMECODE({time_column})),
PAYLOAD(FIELDS({value_col}), CONTENT(REAL))
),
FUNC_PARAMS(MAXLAGS({max_lags}), FUNC_TYPE(0), QSTAT(1), DEMEAN(1), ALPHA(0.05))
);
SELECT * FROM acf_results;
Provide Your Time Series Data:
"Analyze time series table: database.sensor_data with timestamp column and value columns"
The Skill Will:
TD_ACF results are stored in a volatile ART table. Use SELECT * FROM result_table to read them.
uaf_data_preparation.sql: UAF-specific data preparationtd_acf_workflow.sql: Complete TD_ACF implementation with EXECUTE FUNCTION syntaxtd_acf_workflow_template.sql: Parameterized templateuaf_table_analysis.sql: Time series structure analysisparameter_optimization.sql: Function parameter tuninguaf_pipeline_template.sql: Multi-function UAF workflows using ART chainingperformance_monitoring.sql: UAF execution monitoringresult_interpretation.sql: Output analysis and visualizationEXECUTE FUNCTION INTO VOLATILE ART(...) for all UAF function callsThis skill provides production-ready UAF time series analytics using Teradata's Unbounded Array Framework TD_ACF with correct EXECUTE FUNCTION INTO ART syntax.