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
6535a54b
Commit
6535a54b
authored
Nov 08, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
30297e78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
14 deletions
+35
-14
ctr_exp.py
ctr_exp.py
+3
-0
delete_key.py
delete_key.py
+1
-0
user_data.py
user_data.py
+31
-14
No files found.
ctr_exp.py
View file @
6535a54b
...
...
@@ -51,6 +51,9 @@ def get_data():
return
result
def
get_ctr
():
pass
if
__name__
==
"__main__"
:
DIRECTORY_PATH
=
"/home/gmuser/"
df
=
pd
.
DataFrame
(
list
(
get_data
()))
...
...
delete_key.py
View file @
6535a54b
...
...
@@ -113,6 +113,7 @@ def search():
break
cursor
=
new_cursor
if
__name__
==
"__main__"
:
search
()
...
...
user_data.py
View file @
6535a54b
...
...
@@ -133,21 +133,38 @@ def hospital_to_csv():
df
.
to_csv
(
'/tmp/device/hospital.csv'
,
index
=
False
)
def
ctr
(
type
):
sql
=
"select stat_date,new_grey_exp,new_grey_click,new_grey_ctr,new_grey_exp_device,"
\
"new_grey_click_device,new_normal_exp,new_normal_click,new_normal_ctr,new_normal_exp_device,"
\
"new_normal_click_device,old_exp,old_click,old_ctr,old_exp_device,old_click_device "
\
"from '{}'"
.
format
(
type
)
df
=
pd
.
DataFrame
(
list
(
get_mysql_data
(
host
,
port
,
user
,
passwd
,
db
,
sql
)))
name
=
[
"stat_date"
,
"new_grey_exp"
,
"new_grey_click"
,
"new_grey_ctr"
,
"new_grey_exp_device"
,
"new_grey_click_device"
,
"new_normal_exp"
,
"new_normal_click"
,
"new_normal_ctr"
,
"new_normal_exp_device,"
"new_normal_click_device"
,
"old_exp,old_click"
,
"old_ctr"
,
"old_exp_device"
,
"old_click_device"
]
columns
=
dict
(
zip
(
list
(
range
(
len
(
name
))),
name
))
df
=
df
.
rename
(
columns
=
columns
)
df
.
to_csv
(
'/home/gmuser/{}_ctr.csv'
.
format
(
type
),
index
=
False
)
if
__name__
==
"__main__"
:
host
=
"172.16.30.141"
port
=
3306
user
=
"work"
passwd
=
"BJQaT9VzDcuPBqkd"
db
=
"zhengxing"
yconnect
=
create_engine
(
'mysql+pymysql://root:3SYz54LS9#^9sBvC@172.16.40.170:4000/jerry_test?charset=utf8'
)
meigou_tag_to_csv
()
print
(
"end"
)
# host = "172.16.40.170"
# port = 4000
# user = "root"
# passwd = "3SYz54LS9#^9sBvC"
# db = "jerry_test"
# host = "172.16.30.141"
# port = 3306
# user = "work"
# passwd = "BJQaT9VzDcuPBqkd"
# db = "zhengxing"
# yconnect = create_engine('mysql+pymysql://root:3SYz54LS9#^9sBvC@172.16.40.170:4000/jerry_test?charset=utf8')
# meigou_tag_to_csv()
# print("end")
host
=
"172.16.40.170"
port
=
4000
user
=
"root"
passwd
=
"3SYz54LS9#^9sBvC"
db
=
"jerry_test"
ctr
(
type
)
...
...
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