尝试使用class Products {
public int ProductId {get; private set;}
public string DisplayName { get; set; }
public int DisplayOrder { get; set; }
public List<ProductImages> Images {get; set;}
}
class ProductImages{
public string Channel { get; set; }
public string ImageType { get; set; }
public byte[] Image {get; set;}
}
包的ets
模型生成预测时,出现以下错误
forecast
下面是我的代码:
Error in etsmodel(y, errortype[i], trendtype[j], seasontype[k], damped[l], :
function cannot be evaluated at initial parameters
虽然这段代码在某些时间序列上可以正常工作,但是在某些时间序列上却失败了?
任何帮助将不胜感激...