-
Notifications
You must be signed in to change notification settings - Fork 3
Dataframe #5
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
base: develop
Are you sure you want to change the base?
Conversation
|
When the start/end node ids in the edges dataframe are not named sequentially, e.g., given the edges dataframe below
The number of edges is 2 without problem. The number of vertices, should it be 10 or 3? It needs to be 10 to use the same node id as in the dataframe. However, there are only actually 3 nodes. |
kks32
left a comment
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.
Looks good. You may need to run through clang-format to format the c++ code.
|
I have run the |
Co-authored-by: Krishna Kumar <3963513+kks32@users.noreply.github.com>
|
Could you please check |
|
|
Codecov Report
@@ Coverage Diff @@
## develop #5 +/- ##
===========================================
- Coverage 83.94% 82.23% -1.70%
===========================================
Files 6 6
Lines 386 394 +8
===========================================
Hits 324 324
- Misses 62 70 +8
Continue to review full report at Codecov.
|
kks32
left a comment
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 are we removing this file?
kks32
left a comment
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.
Could you please add .clang-format back in?
accidental commit
Add arm64 compatibility
Road networks are usually stored as dataframes. Therefore, it is easier to create a graph directly from the dataframes.
Currently, the graph needs to be created in the following sequence: dataframe --> matrix --> save .mtx --> read .mtx into graph.
The proposed changes will create graph using: dataframe --> graph.