-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[REVIEW] add multi-column support in algorithms - part 1 #1559
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #1559 +/- ##
==============================================
Coverage ? 60.27%
==============================================
Files ? 77
Lines ? 3391
Branches ? 0
==============================================
Hits ? 2044
Misses ? 1347
Partials ? 0 Continue to review full report at Codecov.
|
@@ -106,7 +106,13 @@ def katz_centrality( | |||
|
|||
if nstart is not None: | |||
if G.renumbered is True: | |||
nstart = G.add_internal_vertex_id(nstart, 'vertex', 'vertex') | |||
print(G.renumber_map.implementation.col_names) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the print?
print(G.renumber_map.implementation.col_names) | ||
if len(G.renumber_map.implementation.col_names) > 1: | ||
cols = nstart.columns[:-2] | ||
print(cols) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here. Why printing column names?
@gpucibot merge |
Enable multi-column support in algorithms.
This PR updates: