Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
59964e3a
Commit
59964e3a
authored
Dec 26, 2018
by
王志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
统计用户消费金额及占比曲线
parent
0cb01f1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
3 deletions
+28
-3
temp_analysis.scala
eda/feededa/src/main/scala/com/gmei/temp_analysis.scala
+28
-3
No files found.
eda/feededa/src/main/scala/com/gmei/temp_analysis.scala
View file @
59964e3a
...
...
@@ -467,13 +467,38 @@ object meigou_xiaofei_renshu {
final_id
.
createOrReplaceTempView
(
"final_id"
)
// val meigou_price = sc.sql(
// s"""
// |select md.user_id,sum(md.gengmei_price) as pay_all
// |from online.ml_meigou_order_detail md left join final_id
// |on md.device_id = final_id.device_id
// |where md.status= 2
// |and final_id.device_id is null
// |and md.partition_date = '20181223'
// |and md.pay_time is not null
// |and md.validate_time>'2017-01-01 00:00:00.0'
// |group by md.user_id
// |order by sum(md.gengmei_price)
// """.stripMargin
// )
// meigou_price.show(80)
val
meigou_price
=
sc
.
sql
(
s
"""
|select md.user_id,sum(md.gengmei_price) as pay_all
|from online.ml_meigou_order_detail md left join final_id
|on md.device_id = final_id.device_id
|from online.ml_meigou_order_detail md
|left join
|(
| SELECT
| order_id
| FROM mining.ml_order_spam_recognize
| WHERE partition_date='20181223' AND
| self_support=0 AND dayBitsGetW1(predict_result,'20181223')=0
|)spam
|on md.order_id = spam.order_id
|where md.status= 2
|and
final_id.device_id is
null
|and
spam.order_id is
null
|and md.partition_date = '20181223'
|and md.pay_time is not null
|and md.validate_time>'2017-01-01 00:00:00.0'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment