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
0ad806d4
Commit
0ad806d4
authored
Jun 11, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update fields
parent
8b2eec92
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
tag3_update_user_portrait_offline.py
eda/smart_rank/tag3_update_user_portrait_offline.py
+7
-7
No files found.
eda/smart_rank/tag3_update_user_portrait_offline.py
View file @
0ad806d4
...
@@ -46,13 +46,13 @@ def update_tag3_user_portrait_by_event(cl_id):
...
@@ -46,13 +46,13 @@ def update_tag3_user_portrait_by_event(cl_id):
user_df
[
"second_positions_dict"
]
=
user_df
[
"second_positions"
]
.
apply
(
lambda
x
:
make_dict_from_pair
(
x
))
user_df
[
"second_positions_dict"
]
=
user_df
[
"second_positions"
]
.
apply
(
lambda
x
:
make_dict_from_pair
(
x
))
user_df
[
"projects_dict"
]
=
user_df
[
"projects"
]
.
apply
(
lambda
x
:
make_dict_from_pair
(
x
))
user_df
[
"projects_dict"
]
=
user_df
[
"projects"
]
.
apply
(
lambda
x
:
make_dict_from_pair
(
x
))
user_df
[
"first_solutions
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"first_solutions_dict"
]}
user_df
[
"first_solutions
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"first_solutions_dict"
]))
user_df
[
"second_solutions
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"second_solutions_dict"
]}
user_df
[
"second_solutions
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"second_solutions_dict"
]))
user_df
[
"first_demands
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"first_demands_dict"
]}
user_df
[
"first_demands
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"first_demands_dict"
]))
user_df
[
"second_demands
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"second_demands_dict"
]}
user_df
[
"second_demands
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"second_demands_dict"
]))
user_df
[
"first_positions
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"first_positions_dict"
]}
user_df
[
"first_positions
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"first_positions_dict"
]))
user_df
[
"second_positions
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"second_positions_dict"
]}
user_df
[
"second_positions
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"second_positions_dict"
]))
user_df
[
"projects
_dict"
]
=
{
user_df
[
"event_cn"
]:
user_df
[
"projects_dict"
]}
user_df
[
"projects
"
]
=
list
(
zip
(
user_df
[
"event_cn"
],
user_df
[
"projects_dict"
]))
print
(
user_df
)
print
(
user_df
)
...
...
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