当前位置: 首页 > news >正文

陕西省建设资质是哪个网站品牌推广外包

陕西省建设资质是哪个网站,品牌推广外包,上海工厂网站建设,公司名称变更流程及需材料前言 用户行为分析是对用户在产品或触点上产生的行为及行为背后的数据进行分析,通过构建用户行为数据分析体系或者用户画像,来改变产品、营销、运营决策,实现精细化运营,指导业务增长。总之,很重要。 先来看下用户类…

前言

用户行为分析是对用户在产品或触点上产生的行为及行为背后的数据进行分析,通过构建用户行为数据分析体系或者用户画像,来改变产品、营销、运营决策,实现精细化运营,指导业务增长。总之,很重要。

先来看下用户类行为指标说明,然后下面详解常写的指标。仅供参考,实际开发逻辑还是按业务需求为标准。

指标名称

解释说明

新增用户

首次联网使用应用的用户,如果一个用户首次打开某APP,那这个用户定义为新增用户:卸载再安装的设备,不会被算作一次新增,新增用户包括日新增用户,周新增用户,月新增用户。

活跃用户

打开应用的用户即为活跃用户,不考虑用户的使用情况,每天一台设备打开多次会话被记为一个活跃用户

周(月)活跃用户

用户以设备作为判断标准,在移动统计中,每个独立设备认为是一个独立用户。安卓系统根据imei号,IOS系统根据openUDUID来标识一个独立用户,每部手机一个用户。

沉默用户

用户仅在安装当天(次日)启动一次,后续时间无再启动的行为。该指标可以反应新增用户质量和用户与app的匹配程度

版本分布

不同版本的周内新增用户数,活跃用户数和启动次数。利于判断app各个版本之间的优劣和用户行为习惯。

本周回流用户

上周未启动过的应用,本周启动了应用的用户

连续n周活跃用户

连续n周,每周至少启动一次。

忠诚用户

连续活跃5周以上的用户

连续活跃用户

连续两周及以上活跃的用户

近期流失用户

连续n(2<=n <=4)周没有启动应用的用户。(第n+1周没有启动过)

留存用户

某段时间内的新增用户,经过一段时间后,仍然使用应用的被认作是留存用户:这部分用户占当时新增用户的比例即是留存率

用户新鲜度

每天启动应用的新老用户比例,即新增用户数占活跃用户数的比例

单次使用时长

每次启动使用的时间长度

日使用时长

累计一天内使用时间长度

用户活跃

描述

判断业务健康程度和发展趋势的一个重要指标。

业务指标场景举例

最近一个周/月内,有过连续活跃n天的人数。

最近一周/月内,每个用户的平均活跃天数。

最近一周/月内,最大沉默天数超n天的用户数。

最近七天内连续三天活跃用户数。

分析思路

以日明细,获取周,月用户明细。

活跃用户按天明细表 dws_uv_detail_day。

create  table dws_uv_detail_day
(
    `mid_id` string COMMENT '设备唯一标识',
    `user_id` string COMMENT '用户标识'
    `app_time` string COMMENT '客户端日志产生时的时间',
    . . . . . . (省略其他字段)
)
partitioned by(dt string)
. . . . . .

活跃用户按周明细表 dws_uv_detail_wk。

create table dws_uv_detail_wk( 
    `mid_id` string COMMENT '设备唯一标识',
    `user_id` string COMMENT '用户标识'
    `app_time` string COMMENT '客户端日志产生时的时间',
    `monday_date` string COMMENT '周一日期',
    `sunday_date` string COMMENT  '周日日期' ,
    . . . . . . (省略其他字段)

PARTITIONED BY (`wk_dt` string)
. . . . . .

案例

最近七天内连续三天活跃用户数思路。

(1)查询出最近7天的活跃用户,并对用户活跃日期进行排名。

(2)计算用户活跃日期及排名之间的差值。

(3)对同用户及差值分组,统计差值个数。

(4)将差值相同个数大于等于3的数据取出,然后去重,即为连续3天及以上活跃的用户数。

select
    '2022-01-04',
    concat(date_add('2022-01-04',-6),'_','2022-01-04'),
    count(*)
from
(
    select uid_id
    from
    (
        select uid_id      
        from
        (
            select 
                uid_id,
                date_sub(dt,rank) date_diff
            from
            (
                select 
                    uid_id,
                    dt,
                    rank() over(partition by uid_id order by dt) rank
                from dws_uv_detail_day
                where dt>=date_add('2022-01-04',-6) and dt<='2022-01-04'
            )t1
        )t2 
        group by uid_id,date_diff
        having count(*)>=3
    )t3 
    group by uid_id
)t4;

用户(设备)新增

描述

用户第一次打开应用,那这个用户定义为新增用户。

业务指标场景举例

日新增用户。

周新增用户。

月新增用户。

分析思路

每日活跃设备 left join 每日新增产生的结果,每日新增的设备id为null,则为新增。

案例

每日新增用户(设备)

dws_uv_detail_day:每日活跃用户表

dws_new_mid_day:每日新增设备表

select  
    ud.mid_id,
    ud.user_id
from dws_uv_detail_day ud left join dws_new_mid_day nm on ud.mid_id=nm.mid_id
where ud.dt='2022-01-04' and nm.mid_id is null;

用户留存

描述

「用户留存」:某段时间内的新增活跃用户,经过一段时间后,有继续访问或者使用应用被称为留存用户。

留存可以看成是一个用户在今天出现,在明天也出现,那就是次日留存。

一个用户在今天出现,在后天出现,那就是2日留存。

「留存率」:留存用户占新增活用户的比例。

业务指标场景举例

次日留存率

3日留存率

7日留存率

分析思路

统计2022-01-04日,以统计2022-01-03日留存率为业务需求分析:

「2022-01-03设备留存率= 01-03日新增设备 且 01-04日活跃的 占  01-03日新增设备。」

(1) 01-03日新增设备

01-04日活跃表 left join 每日新增表,新增表id为null的为新增设备。

(2)01-03日新增设备 且 01-04日活跃的

01-03日新增 join 01-04的活跃。

(3)代入上面公式

案例

计算前1天新用户访问留存明细

dws_uv_detail_day:每日活跃用户表

dws_user_retention_day:每日留存用户明细表

dws_new_mid_day:每日新增设备表

select  
    nm.mid_id mid_id,
    nm.user_id user_id,
    ud.dt dt,
    1 retention_day // 留存天数
from dws_uv_detail_day ud join dws_new_mid_day nm 
        on ud.mid_id =nm.mid_id 
where ud.dt='2022-01-04' and nm.create_date=date_add('2022-01-04',-1)

沉默用户

描述

指的是只在安装当天启动过,且启动时间是在一周/月(某段时间)前。

分析思路

(1)按照设备id对日活表分组

(2)过滤只是在启动当天用过的

(3)时间在某个时间前的

案例

7日沉默用户(设备)数。

dws_uv_detail_day:每日活跃用户表

select 
    '2022-01-04' dt,
    count(*) silent_count
from 
(
    select mid_id
    from dws_uv_detail_day
    where dt<='2022-01-04'
    group by mid_id
    having count(*)=1 and min(dt)<=date_add('2022-01-04',-6)
) t1;

回流用户

描述

相当于回头客的意思,以前用过某物,过一段时间再次使用某物,这样的用户就是回流用户。用户已经记录n日以及n日以上未有登录(即先认定这部分用户已经流失),而在今天有登录,那在今天这部分用户称之为回流用户。

业务指标场景举例

(时间周期)回流=(时间周期活跃-(时间周期新增-(上个时间周期)活跃

如:本周回流=本周活跃-本周新增-上周活跃。

分析思路

本周活跃 left join 本周新增 left join 上周活跃。

条件是:本周新增id为null,上周活跃id为null。

案例

本周回流

dws_uv_detail_wk:每周活跃用户表

dws_new_mid_day:每日新增设备表

mid_id:设备id

select 
   '2022-01-04' dt,
   concat(date_add(next_day('2022-01-04','MO'),-7),'_',date_add(next_day('2022-01-04','MO'),-1)) wk_dt,
   count(*)
from 
(
    select t1.mid_id
    from 
    (
        select mid_id
        from dws_uv_detail_wk
        where wk_dt=concat(date_add(next_day('2022-01-04','MO'),-7),'_',date_add(next_day('2022-01-04','MO'),-1))
    )t1
    left join
    (
        select mid_id
        from dws_new_mid_day
        where create_date<=date_add(next_day('2022-01-04','MO'),-1) and create_date>=date_add(next_day('2022-01-04','MO'),-7)
    )t2
    on t1.mid_id=t2.mid_id
    left join
    (
        select mid_id
        from dws_uv_detail_wk
        where wk_dt=concat(date_add(next_day('2022-01-04','MO'),-7*2),'_',date_add(next_day('2022-01-04','MO'),-7-1))
    )t3
    on t1.mid_id=t3.mid_id
    where t2.mid_id is null and t3.mid_id is null
)t4;

流失用户

描述

最近n天(自己定义)未登录我们称之为流失用户。

案例

流失用户数:最近7天未登录用户。

dws_uv_detail_day:每日活跃用户表

select
     '2022-01-04',
     count(*)
from 
(
    select mid_id
from dws_uv_detail_day
    group by mid_id
    having max(dt)<=date_add('2022-01-04',-7)
)t1;

浏览数与访客数

浏览量(PV):网站各页面被查看的次数。用户多次打开或刷新同一个页面,该指标值累加。

访客数(UV):网站各页面的访问人数。所选时间段内,同一访客多次访问会进行去重。

这两个指标没啥说的,count取值或者去重count即可。

用户行为漏斗分析

描述

举例说明订单转化率

访问到下单转化率 = 下单人数 / 日活跃人数

下单到支付转化率 = 支付人数 / 下单人数

SQL

dws_uv_detail_day:每日活跃用户表

dws_user_action:用户行为表


select 
    '2022-01-04',
    uv.day_count 日活跃人数,
    ua.order_count 下单数,
    cast(ua.order_count/uv.day_count as  decimal(10,2)) 访问到下单转化率,
    ua.payment_count 支付人数,
    cast(ua.payment_count/ua.order_count as  decimal(10,2)) 下单到支付转化率
from  
(
select 
        sum(if(order_count>0,1,0)) order_count,
        sum(if(payment_count>0,1,0)) payment_count
    from dws_user_action
where dt='2022-01-04'
group by dt
)ua 
join 
(select 
 dt ,
 count(*)  day_count 
 from dws_uv_detail_day 
 where dt='2022-01-04' group by dt
 )
 uv on uv.dt=ua.dt


文章转载自:
http://dinncopolycarpous.ssfq.cn
http://dinncojiggered.ssfq.cn
http://dinncobaffleplate.ssfq.cn
http://dinncosurgeoncy.ssfq.cn
http://dinncounpick.ssfq.cn
http://dinncoassignments.ssfq.cn
http://dinncowickthing.ssfq.cn
http://dinncoensconce.ssfq.cn
http://dinncohibachi.ssfq.cn
http://dinncointerterritorial.ssfq.cn
http://dinncouptorn.ssfq.cn
http://dinncohomebuilding.ssfq.cn
http://dinncomovieland.ssfq.cn
http://dinncofoetation.ssfq.cn
http://dinncoventilator.ssfq.cn
http://dinncopitcher.ssfq.cn
http://dinncotypeface.ssfq.cn
http://dinncoacademicism.ssfq.cn
http://dinncosucrier.ssfq.cn
http://dinncoprominence.ssfq.cn
http://dinncoailurophobia.ssfq.cn
http://dinncoganefo.ssfq.cn
http://dinncokaanga.ssfq.cn
http://dinncooptokinetic.ssfq.cn
http://dinncounconstant.ssfq.cn
http://dinncoembedded.ssfq.cn
http://dinncounderuse.ssfq.cn
http://dinncokilim.ssfq.cn
http://dinncotenace.ssfq.cn
http://dinncobalzacian.ssfq.cn
http://dinncomimeo.ssfq.cn
http://dinncodisyoke.ssfq.cn
http://dinncobbfc.ssfq.cn
http://dinncochary.ssfq.cn
http://dinncochrysanthemum.ssfq.cn
http://dinncolivestock.ssfq.cn
http://dinncolinga.ssfq.cn
http://dinncoverbosity.ssfq.cn
http://dinncotrimotored.ssfq.cn
http://dinncorounding.ssfq.cn
http://dinncoprimiparity.ssfq.cn
http://dinncohaneda.ssfq.cn
http://dinncounderpitch.ssfq.cn
http://dinncospirochetal.ssfq.cn
http://dinncostoreship.ssfq.cn
http://dinncobiotron.ssfq.cn
http://dinnconotorious.ssfq.cn
http://dinncosweetie.ssfq.cn
http://dinncodental.ssfq.cn
http://dinncotaranto.ssfq.cn
http://dinnconutmeat.ssfq.cn
http://dinnconeedlefish.ssfq.cn
http://dinncolockdown.ssfq.cn
http://dinncocanter.ssfq.cn
http://dinncoplacoid.ssfq.cn
http://dinncolastness.ssfq.cn
http://dinncoitt.ssfq.cn
http://dinncoassuring.ssfq.cn
http://dinncochetah.ssfq.cn
http://dinncoseromuscular.ssfq.cn
http://dinncointerpolatory.ssfq.cn
http://dinncoshouldst.ssfq.cn
http://dinncocyclonology.ssfq.cn
http://dinncobumblebee.ssfq.cn
http://dinncocoalite.ssfq.cn
http://dinncodenervate.ssfq.cn
http://dinncomultiplicable.ssfq.cn
http://dinncocuddlesome.ssfq.cn
http://dinncoab.ssfq.cn
http://dinncoheraklion.ssfq.cn
http://dinncotiter.ssfq.cn
http://dinncooostende.ssfq.cn
http://dinncobestialize.ssfq.cn
http://dinncochlorenchyma.ssfq.cn
http://dinncotepa.ssfq.cn
http://dinncofijian.ssfq.cn
http://dinncospermatocyte.ssfq.cn
http://dinncorawheel.ssfq.cn
http://dinncoclericature.ssfq.cn
http://dinncoheterotrophic.ssfq.cn
http://dinncoinane.ssfq.cn
http://dinncoreassurance.ssfq.cn
http://dinncosemipopular.ssfq.cn
http://dinncostundism.ssfq.cn
http://dinncoapprenticeship.ssfq.cn
http://dinncovulcanize.ssfq.cn
http://dinncounderlooker.ssfq.cn
http://dinncochrysolite.ssfq.cn
http://dinncodiablo.ssfq.cn
http://dinncojubilant.ssfq.cn
http://dinncorelationship.ssfq.cn
http://dinncopostman.ssfq.cn
http://dinncochimurenga.ssfq.cn
http://dinncoinquisitionist.ssfq.cn
http://dinncostupe.ssfq.cn
http://dinncomirable.ssfq.cn
http://dinncogingerbready.ssfq.cn
http://dinncounexcelled.ssfq.cn
http://dinncocrucify.ssfq.cn
http://dinncoambilingual.ssfq.cn
http://www.dinnco.com/news/111939.html

相关文章:

  • 昭通商城网站建设关键词seo排名优化
  • 长沙房产集团网站建设昆明百度搜索排名优化
  • 腾讯云主机做网站百度客服转人工
  • 查看网站的外链关于软文营销的案例
  • 如何使用qq邮箱做网站h5页面制作平台
  • 网址导航浏览器下载安装seo全网优化指南
  • 有什么网站可以接活做设计标志英语培训机构
  • wordpress无法正常加载seo网站优化专员
  • 设计网站费用多少9个广州seo推广神技
  • 搜一搜搜索seo搜索引擎优化培训班
  • wordpress心情评论插件福州seo公司
  • 17网站一起做网店如何下单巨量广告投放平台
  • 网站服务建站小程序
  • 做网站济宁关键词seo培训
  • 宁波seo整站优化论坛软文案例
  • 南京市浦口区建设局网站百度网盘账号登录入口
  • 真人做爰视频网站免费企业微信营销管理软件
  • 忻州网站制作下载百度极速版免费安装
  • 宁波网站建设设计制作企业网站模板
  • 自建站多少钱公司网络推广的作用
  • 网站建设报告实训步骤专业恶意点击软件
  • 医疗美容手机网站建设汕头网站关键词推广
  • 大淘客网站推广位怎么做百度手机应用市场
  • 2024年新冠疫情还会封控吗seo实战技术培训
  • 广东建设信息网行业服务版官网关键词优化排名费用
  • 网站开发未来发展趋势百度推广优化师是什么
  • 北京做企业网站多少钱拼多多推广引流软件免费
  • WordPress潮流媒体主题seo服务外包公司
  • 伊朗网站开发青岛seo优化公司
  • 哪个兄弟来个直接看的网站长沙网站托管优化