12345678910111213141516171819202122232425262728293031323334 |
- package response
- type StlPreviewResp struct {
- OriginEdbInfo ChartEdbInfo
- TrendChartInfo ChartEdbInfo
- SeasonalChartInfo ChartEdbInfo
- ResidualChartInfo ChartEdbInfo
- EvaluationResult EvaluationResult
- }
- type ChartEdbInfo struct {
- Title string
- Unit string
- Frequency string
- ClassifyId string
- ClassifyPath string
- DataList []*EdbData
- }
- type EvaluationResult struct {
- Mean string `description:"均值"`
- Std string `description:"标准差"`
- AdfPValue string `description:"ADF检验p值"`
- LjungBoxPValue string `description:"Ljung-Box检验p值"`
- }
- type EdbData struct {
- Value string
- DataTime string
- }
- type SaveStlConfigResp struct {
- CalculateStlConfigId int64 `description:"配置文件id"`
- }
|