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
4ec76001
Commit
4ec76001
authored
Aug 22, 2018
by
高雅喆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add try_except
parent
a9b46666
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
20 deletions
+25
-20
main.py
eda/recommended_indexs/main.py
+25
-20
No files found.
eda/recommended_indexs/main.py
View file @
4ec76001
...
...
@@ -57,14 +57,17 @@ click_everything_result = [click_everything_all,click_everything_ios,click_every
print
(
"已获取有点击用户占比"
)
#1.8 无点击用户数分布(=无点击用户∩激活用户 / 激活用户数) #注意:(]里面的数字指的是距离当前时间的天数
click_zero_uid_detail_all
=
get_click_zero_uid_rate_detail
(
"all"
)
click_zero_uid_detail_all
[
"platform"
]
=
"所有"
click_zero_uid_detail_ios
=
get_click_zero_uid_rate_detail
(
"ios"
)
click_zero_uid_detail_ios
[
"platform"
]
=
"苹果"
click_zero_uid_detail_android
=
get_click_zero_uid_rate_detail
(
"android"
)
click_zero_uid_detail_android
[
"platform"
]
=
"安卓"
click_zero_uid_detail_result
=
[
click_zero_uid_detail_all
,
click_zero_uid_detail_ios
,
click_zero_uid_detail_android
]
print
(
"已获取无点击用户数激活日期分布"
)
try
:
click_zero_uid_detail_all
=
get_click_zero_uid_rate_detail
(
"all"
)
click_zero_uid_detail_all
[
"platform"
]
=
"所有"
click_zero_uid_detail_ios
=
get_click_zero_uid_rate_detail
(
"ios"
)
click_zero_uid_detail_ios
[
"platform"
]
=
"苹果"
click_zero_uid_detail_android
=
get_click_zero_uid_rate_detail
(
"android"
)
click_zero_uid_detail_android
[
"platform"
]
=
"安卓"
click_zero_uid_detail_result
=
[
click_zero_uid_detail_all
,
click_zero_uid_detail_ios
,
click_zero_uid_detail_android
]
print
(
"已获取无点击用户数激活日期分布"
)
except
:
print
(
"GC life time is shorter than transaction duration"
)
#==========================================================================================
...
...
@@ -167,18 +170,20 @@ def result2file():
line
=
tplt
.
format
(
i
[
0
],
i
[
1
],
i
[
2
],
"{}
%
"
.
format
(
round
(
i
[
3
]
*
100
,
2
)))
f
.
write
(
line
)
f
.
write
(
'
\n
'
)
f
.
write
(
"#1.8无点击用户数分布(=无点击用户∩激活用户 / 激活用户数) #注意:(]里面的数字指的是距离当前时间的天数
\n
"
)
f
.
write
(
"平台"
+
'
\t\t
'
+
"0-7"
+
'
\t\t
'
+
"7-14"
+
'
\t\t
'
+
\
"14-30"
+
'
\t\t
'
+
"30-60"
+
'
\t\t
'
+
"60-90"
+
'
\t\t
'
+
"90+"
+
'
\n
'
)
for
i
in
click_zero_uid_detail_result
:
f
.
write
(
i
[
"platform"
]
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"0-7"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"7-14"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"14-30"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"30-60"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"60-90"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"90+"
]
*
100
,
2
))
+
'
\n
'
)
f
.
write
(
'
\n\n\n
'
)
if
"click_zero_uid_detail_result"
in
dir
():
f
.
write
(
"#1.8无点击用户数分布(=无点击用户∩激活用户 / 激活用户数) #注意:(]里面的数字指的是距离当前时间的天数
\n
"
)
f
.
write
(
"平台"
+
'
\t\t
'
+
"0-7"
+
'
\t\t
'
+
"7-14"
+
'
\t\t
'
+
\
"14-30"
+
'
\t\t
'
+
"30-60"
+
'
\t\t
'
+
"60-90"
+
'
\t\t
'
+
"90+"
+
'
\n
'
)
for
i
in
click_zero_uid_detail_result
:
f
.
write
(
i
[
"platform"
]
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"0-7"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"7-14"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"14-30"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"30-60"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"60-90"
]
*
100
,
2
))
+
'
\t\t
'
+
\
"{}
%
"
.
format
(
round
(
i
[
"90+"
]
*
100
,
2
))
+
'
\n
'
)
f
.
write
(
'
\n\n\n
'
)
#==========================================================================================
tplt
=
"{0:^10}
\t
{1:^10}
\n
"
f
.
write
(
"#2. Top特征
\n
"
)
...
...
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