码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • Hive之同比环比的计算


    Hive系列文章

    1. Hive表的基本操作
    2. Hive中的集合数据类型
    3. Hive动态分区详解
    4. hive中orc格式表的数据导入
    5. Java通过jdbc连接hive
    6. 通过HiveServer2访问Hive
    7. SpringBoot连接Hive实现自助取数
    8. hive关联hbase表
    9. Hive udf 使用方法
    10. Hive基于UDF进行文本分词
    11. Hive窗口函数row number的用法
    12. 数据仓库之拉链表

    关注公众号:大数据技术派,回复: 资料,领取1024G资料。

    目录
    • 同比环比的计算
      • 测试数据
      • 销售量的月年占比
        • 关联实现
        • 窗口实现
      • 同比环比
        • lead lag 的实现
        • 自关联的实现

    同比环比的计算

    测试数据

    1,2020-04-20,420
    2,2020-04-04,800
    3,2020-03-28,500
    4,2020-03-13,100
    5,2020-02-27,300
    6,2020-01-07,450
    7,2019-04-07,800
    8,2019-03-15,1200
    9,2019-02-17,200
    10,2019-02-07,600
    11,2019-01-13,300
    
    CREATE TABLE ods_saleorder  (
      order_id int ,
      order_time date ,
      order_num int
    )ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ','
    ;
    LOAD DATA LOCAL INPATH '/Users/liuwenqiang/workspace/hive/saleorder.txt' OVERWRITE INTO TABLE ods.ods_saleorder;
    

    销售量的月年占比

    关联实现

    select
        a.m_num,a.cmonth,b.y_num,b.cyear,round( m_num / y_num, 2 ) AS ratio
    from(
            select
                sum(order_num) as m_num,
                DATE_FORMAT(order_time,'yyyy-MM') as cmonth
            from
                ods_saleorder
            group by
                DATE_FORMAT(order_time,'yyyy-MM')
        ) a
            inner join
        (
            select
                sum(order_num) as y_num,
                DATE_FORMAT(order_time,'yyyy') as cyear
            from
                ods_saleorder
            group by
                DATE_FORMAT(order_time,'yyyy')
        ) b
     on
        substring(a.cmonth,1,4)=b.cyear
    ;
    

    image-20210114192005253

    窗口实现

    SELECT
        order_month,
        num,
        total,
        round( num / total, 2 ) AS ratio
    FROM
        (
            select
                substr(order_time, 1, 7) as order_month,
                sum(order_num) over (partition by substr(order_time, 1, 7)) as num,
                sum(order_num) over (partition by substr( order_time, 1, 4 ) ) total,
                row_number() over (partition by substr(order_time, 1, 7)) as rk
            from ods_saleorder
        ) temp
    where rk = 1;
    

    同比环比

    与上年度数据对比称"同比",与上月数据对比称"环比"。
    相关公式如下:

    同比增长率计算公式
    (当年值-上年值)/上年值x100% 
    
    环比增长率计算公式
    (当月值-上月值)/上月值x100% 
    

    lead lag 的实现

    这里我们就用环比做个例子,同比类似

    select
        now_month,
        now_num,
        last_num,
        round( (now_num-last_num) / last_num, 2 ) as ratio
    FROM(
        select
            now_month,
            now_num,
            lag( t1.now_num, 1) over (order by t1.now_month ) as last_num
        from
            (
                select
                    substr(order_time, 1, 7) as now_month,
                    sum(order_num) as now_num
                from ods_saleorder
                group by
                    substr(order_time, 1, 7)
            ) t1
    ) t2;
    

    image-20210114203453599

    我们看到有null 值,这里我们可以使用,lag的默认值做一次优化

    select
        now_month,
        now_num,
        last_num,
        -- 分母是0的话返回值是null
        nvl(round( (now_num-last_num) / last_num, 2 ),0)as ratio
    FROM(
        select
            now_month,
            now_num,
            lag( t1.now_num, 1,0) over (order by t1.now_month ) as last_num
        from
            (
                select
                    substr(order_time, 1, 7) as now_month,
                    sum(order_num) as now_num
                from ods_saleorder
                group by
                    substr(order_time, 1, 7)
            ) t1
    ) t2;
    

    image-20210114203935322

    其实到这里我们就处理完了,但是这样真的对吗,我们看到'2020-01' 的last_num 是800 也就是'2019-04',其实到这里我们就明白了,我们的数据是不连续的,所以我们这样计算是不行的,如果每个月都齐全,都有数据lag(num,12)就可以。

    那就只能做自关联了,这样的话我们可以对时间做精准的限制

    自关联的实现

    with a as (
        select
            now_month,
            now_num,
            substr(date(concat(now_month,'-','01')) - INTERVAL '1' month, 1, 7) as last_month
        from(
             select
                 substr(order_time, 1, 7) as now_month,
                 sum(order_num) as now_num
             from ods_saleorder
             group by
                 substr(order_time, 1, 7)
        ) tmp
    )
    select
        a1.now_month,a1.now_num,a1.last_month,a2.now_num,
        nvl(round( (a1.now_num-a2.now_num) / a2.now_num, 2 ),0) as ratio
    from
        a  a1
    inner join
        a a2
    on
        a1.last_month=a2.now_month
    ;
    

    image-20210114210717600

    这里的时间计算INTERVAL 你也可以换成其他函数

    with a as (
        select
            now_month,
            now_num,
            substr(add_months(concat(now_month,'-','01'),-1), 1, 7) as last_month
        from(
             select
                 substr(order_time, 1, 7) as now_month,
                 sum(order_num) as now_num
             from ods_saleorder
             group by
                 substr(order_time, 1, 7)
        ) tmp
    )
    select
        a1.now_month,a1.now_num,a1.last_month,nvl(a2.now_num,0),
        nvl(round( (a1.now_num-a2.now_num) / a2.now_num, 2 ),0) as ratio
    from
        a  a1
    left join
        a a2
    on
        a1.last_month=a2.now_month
    ;
    

    猜你喜欢

    Hadoop3数据容错技术(纠删码)

    Hadoop 数据迁移用法详解

    Flink实时计算topN热榜

    数仓建模分层理论

    数仓建模方法论

  • 相关阅读:
    Spring AOP使用示例
    使用python读取csv文件中的数据
    1017 Queueing at Bank
    归并排序(C)递归与分治策略
    【设计模式】Java设计模式 - 装饰者模式
    数据分析实战应用案例精讲-【概念篇】用户画像(最终篇)(附实战案例)
    Ubuntu 20.04安装ipopt和cppAD(安装全流程+报错解决)
    电脑更新win10黑屏解决方法
    Python的打包神器—Nuitka!
    leetcode做题笔记169. 多数元素
  • 原文地址:https://www.cnblogs.com/data-magnifier/p/15906641.html
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号