摘要: 步骤1:数据预处理。 1. 时间序列填充 2. 做lag 3. 数值型字段空值填充 ``` # 2. 做lag LAG(`销售收入`, 1) OVER(ORDER BY `year_month`) as `上月_销售收入` LAG(`销售收入`, 11) OVER(ORDER BY `year_mo 阅读全文
posted @ 2023-06-20 19:28 ttttttian 阅读(1048) 评论(0) 推荐(0)