-
Notifications
You must be signed in to change notification settings - Fork 8
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
adding Bitcoin OTC trust network #4
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4 +/- ##
==========================================
Coverage ? 100.00%
==========================================
Files ? 1
Lines ? 7
Branches ? 0
==========================================
Hits ? 7
Misses ? 0
Partials ? 0 |
Seems I was a little heavy-handed using |
@@ -17,7 +17,8 @@ snap_graphs = Dict{Symbol, String}( | |||
:facebook_combined => "facebook-combined/facebook-combined.jlg", | |||
:patent_cit_us => "patent_cit/patent-cit-us.jlg", | |||
:soc_slashdot0902_d => "soc-slashdot0902/soc-slashdot0902-directed.jlg", | |||
:soc_slashdot0902_u => "soc-slashdot0902/soc-slashdot0902-undirected.jlg" | |||
:soc_slashdot0902_u => "soc-slashdot0902/soc-slashdot0902-undirected.jlg", | |||
:soc_sign_bitcoinotc => "soc-sign-bitcoinotc/soc-sign-bitcoinotc.lg" |
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.
Sorry for the delay. This should be jlg
, no?
Also, did you compress the file? loadgraph
will autodetect and will uncompress. Keep the jlg
extension (remove gz
) if you do this.
Adds Bitcoin OTC trust weighted signed network from SNAP. Note that the
SimpleDiGraph
object in this PR includes only the edges of this dataset, not the edge attributes.I'll leave the script I used to generate the data. I also had a need for the edge attributes of this data, I've also loaded the edges and attributes using GraphDataFramesBridge. I omitted this
MetaDiGraph
object from the PR due to its size (approx 21MB).EDIT: commenting out the portion of the script that generates the MetaDiGraph due to issues reading the extracted CSV with CSV.File