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
1fe7b65c
Commit
1fe7b65c
authored
Nov 01, 2018
by
王志伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.wanmeizhensuo.com/ML/ffm-baseline
fix bug
parents
312e733f
5b1854e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
63 deletions
+64
-63
ctr_exp.py
ctr_exp.py
+64
-0
ctr_front.py
ctr_front.py
+0
-63
No files found.
ctr_exp.py
0 → 100644
View file @
1fe7b65c
# -*- coding: UTF-8 -*-
import
pymysql
import
datetime
import
pandas
as
pd
def
get_yesterday_date
():
today
=
datetime
.
date
.
today
()
yesterday
=
today
-
datetime
.
timedelta
(
days
=
1
)
yesterday
=
yesterday
.
strftime
(
"
%
Y-
%
m-
%
d"
)
print
(
yesterday
)
return
yesterday
def
get_data
():
conn2db
=
pymysql
.
connect
(
host
=
'10.66.157.22'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'eagle'
)
cursor
=
conn2db
.
cursor
()
sql
=
"select distinct device_id from ffm_diary_queue_temp where device_id regexp '[5|6]$'"
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
device
=
tuple
(
pd
.
DataFrame
(
list
(
result
))[
0
]
.
values
.
tolist
())
cursor
.
close
()
print
(
device
[
0
:
2
])
return
device
def
ctr_all
():
db
=
pymysql
.
connect
(
host
=
'10.66.157.22'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'jerry_prod'
)
cursor
=
db
.
cursor
()
sql_active
=
"select distinct device_id from data_feed_exposure "
\
"where (cid_type = 'diary' or cid_type = 'diary_video') "
\
"and device_id regexp'[5|6]$' and stat_date = '{}';"
.
format
(
date
)
cursor
.
execute
(
sql_active
)
result
=
cursor
.
fetchall
()
tail56
=
pd
.
DataFrame
(
list
(
result
))[
0
]
.
values
.
tolist
()
print
(
"当天尾号5或6活跃用户总数:"
)
print
(
len
(
tail56
))
cover
=
list
(
set
(
tail56
)
&
set
(
device_id
))
id
=
list
()
number
=
list
()
for
i
in
cover
[
0
:
10
]:
sql
=
"select count(cid) from data_feed_exposure "
\
"where cid_type = 'diary'"
\
"and stat_date = '{}' and device_id = '{}';"
.
format
(
date
,
i
)
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchone
()[
0
]
id
.
append
(
i
)
number
.
append
(
result
)
df
=
pd
.
DataFrame
()
df
[
'id'
]
=
id
df
[
'number'
]
=
number
df
=
df
.
sort_values
(
by
=
"number"
,
ascending
=
False
)
df
.
to_csv
(
DIRECTORY_PATH
+
"exp.csv"
,
index
=
None
)
if
__name__
==
"__main__"
:
DIRECTORY_PATH
=
"/data2/ffm/"
date
=
get_yesterday_date
()
device_id
=
get_data
()
ctr_all
()
ctr_front.py
deleted
100644 → 0
View file @
312e733f
# -*- coding: UTF-8 -*-
import
pymysql
import
datetime
import
pandas
as
pd
DIRECTORY_PATH
=
"/data2/ffm/"
def
get_data
():
conn2db
=
pymysql
.
connect
(
host
=
'10.66.157.22'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'eagle'
)
cursor
=
conn2db
.
cursor
()
sql
=
"select device_id from eagle.ffm_diary_queue where device_id regexp '[5|6]$'"
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
df
=
pd
.
DataFrame
(
list
(
result
))
df
.
to_csv
(
"/data2/ffm/10.3-10.9device_id.csv"
,
index
=
None
)
device_id
=
tuple
(
df
[
0
]
.
values
.
tolist
())
cursor
.
close
()
return
device_id
def
ctr
():
device_id
=
get_data
()
db
=
pymysql
.
connect
(
host
=
'10.66.157.22'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'jerry_prod'
)
cursor
=
db
.
cursor
()
date
=
[]
exp_list
=
[]
click_list
=
[]
rate_list
=
[]
a
=
"2018-10-0"
for
i
in
range
(
1
,
12
):
date
.
append
(
a
+
str
(
i
))
sql_exp
=
"select count(cid) from data_feed_exposure "
\
"where cid_type = 'diary' and stat_date= '{}' and "
\
"device_id in {}"
.
format
(
a
+
str
(
i
),
device_id
)
cursor
.
execute
(
sql_exp
)
exp
=
cursor
.
fetchone
()[
0
]
exp_list
.
append
(
exp
)
sql_click
=
"select count(cid) from data_feed_click "
\
"where cid_type = 'diary' and stat_date= '{}' and "
\
"device_id in {}"
.
format
(
a
+
str
(
i
),
device_id
)
cursor
.
execute
(
sql_click
)
click
=
cursor
.
fetchone
()[
0
]
click_list
.
append
(
click
)
print
(
a
+
str
(
i
)
+
"曝光数:"
+
str
(
exp
))
print
(
a
+
str
(
i
)
+
"点击数:"
+
str
(
click
))
if
exp
!=
0
:
rate
=
click
/
exp
rate_list
.
append
(
rate
)
print
(
a
+
str
(
i
)
+
"点击率:"
+
str
(
rate
))
db
.
close
()
df
=
pd
.
DataFrame
()
df
[
"date"
]
=
date
df
[
"exp"
]
=
exp_list
df
[
"click"
]
=
click_list
df
[
"ctr"
]
=
rate_list
print
(
df
)
df
.
to_csv
(
DIRECTORY_PATH
+
"10.1-10.11ctr.csv"
,
index
=
None
)
if
__name__
==
"__main__"
:
ctr
()
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