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
17b83862
Commit
17b83862
authored
Feb 24, 2020
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
ec3e977c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
2 deletions
+34
-2
make_data.py
make_data.py
+34
-2
No files found.
make_data.py
View file @
17b83862
...
@@ -3,6 +3,36 @@ import pymysql
...
@@ -3,6 +3,36 @@ import pymysql
import
pandas
as
pd
import
pandas
as
pd
def
exp
():
date_str
=
"20200101"
sql
=
"select b.merchant_id "
\
"from statistic_doctor_rank_factor d "
\
"left join hippo_merchantrelevance b on d.doctor_id = b.doctor_id "
\
"where d.partition_date = '{}';"
.
format
(
date_str
)
db
=
pymysql
.
connect
(
host
=
'172.16.30.143'
,
port
=
3306
,
user
=
'work'
,
passwd
=
'BJQaT9VzDcuPBqkd'
,
db
=
'zhengxing'
)
cursor
=
db
.
cursor
()
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
h_merchant_id
=
pd
.
DataFrame
(
list
(
result
))[
0
]
.
values
.
tolist
()
print
(
len
(
h_merchant_id
))
print
(
h_merchant_id
[:
6
])
sql
=
"select merchant_id from statistic_merchant_rank_factor "
\
"where partition_date = '{}';"
.
format
(
date_str
)
cursor
=
db
.
cursor
()
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
db
.
close
()
s_merchant_id
=
pd
.
DataFrame
(
list
(
result
))[
0
]
.
values
.
tolist
()
print
(
len
(
s_merchant_id
))
print
(
s_merchant_id
[:
6
])
print
(
len
(
set
(
s_merchant_id
)
&
set
(
h_merchant_id
)))
def
doctor
():
def
doctor
():
date_str
=
"20200101"
date_str
=
"20200101"
date_tmp
=
"2020-01-01"
date_tmp
=
"2020-01-01"
...
@@ -183,6 +213,8 @@ def hospital():
...
@@ -183,6 +213,8 @@ def hospital():
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
doctor
()
# doctor()
hospital
()
# hospital()
exp
()
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