stl.go 767 B

12345678910111213141516171819202122232425262728293031323334
  1. package response
  2. type StlPreviewResp struct {
  3. OriginEdbInfo ChartEdbInfo
  4. TrendChartInfo ChartEdbInfo
  5. SeasonalChartInfo ChartEdbInfo
  6. ResidualChartInfo ChartEdbInfo
  7. EvaluationResult EvaluationResult
  8. }
  9. type ChartEdbInfo struct {
  10. Title string
  11. Unit string
  12. Frequency string
  13. ClassifyId string
  14. ClassifyPath string
  15. DataList []*EdbData
  16. }
  17. type EvaluationResult struct {
  18. Mean string `description:"均值"`
  19. Std string `description:"标准差"`
  20. AdfPValue string `description:"ADF检验p值"`
  21. LjungBoxPValue string `description:"Ljung-Box检验p值"`
  22. }
  23. type EdbData struct {
  24. Value string
  25. DataTime string
  26. }
  27. type SaveStlConfigResp struct {
  28. CalculateStlConfigId int64 `description:"配置文件id"`
  29. }