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
5d6bc463
Commit
5d6bc463
authored
Dec 28, 2018
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
按照用户去重应用列表样本
parent
c102f5d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
applist.py
tensnsorflow/applist.py
+5
-2
ffm.py
tensnsorflow/ffm.py
+1
-0
No files found.
tensnsorflow/applist.py
View file @
5d6bc463
...
...
@@ -29,10 +29,13 @@ def json_format(x):
def
sort_app
():
db
=
pymysql
.
connect
(
host
=
'10.66.157.22'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'jerry_prod'
)
sql
=
"select device_id,app_list from device_id_applist"
sql
=
"select device_id,app_list
,stat_date
from device_id_applist"
df
=
con_sql
(
db
,
sql
)
.
dropna
()
df
=
df
.
rename
(
columns
=
{
0
:
"device_id"
,
1
:
"app_list"
})
df
=
df
.
rename
(
columns
=
{
0
:
"device_id"
,
1
:
"app_list"
,
2
:
"stat_date"
})
print
(
df
.
shape
)
df
=
df
.
sort_values
(
by
=
"stat_date"
,
ascending
=
False
)
print
(
df
.
head
())
df
=
df
.
drop
(
"stat_date"
,
axis
=
1
)
df
=
df
.
drop_duplicates
(
"device_id"
)
print
(
df
.
shape
)
df
=
df
.
loc
[
df
[
"app_list"
]
.
apply
(
is_json
)]
...
...
tensnsorflow/ffm.py
View file @
5d6bc463
...
...
@@ -177,6 +177,7 @@ def get_data():
for
i
in
[
"ucity_id"
,
"clevel1_id"
,
"ccity_name"
,
"device_type"
,
"manufacturer"
,
"channel"
,
"top"
]:
features
=
features
+
len
(
df
[
i
]
.
unique
())
df
[
i
]
=
df
[
i
]
.
fillna
(
0
)
df
[
"time"
]
=
df
[
"time"
]
.
fillna
(
df
[
"time"
]
.
mode
()[
0
])
print
(
df
.
count
())
print
(
df
.
head
(
2
))
print
(
"fields:{}"
.
format
(
df
.
shape
[
1
]
-
1
))
...
...
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