-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding dining preference dataset (#3866)
This dataset is very small, and uses strings as node names. It will be used to test force atlas, and in a new link prediction/similarity notebook. the licensing is contained here. http://networkdata.ics.uci.edu/netdata/html/Dining-table_partners.html Authors: - Don Acosta (https://github.com/acostadon) - Brad Rees (https://github.com/BradReesWork) Approvers: - Brad Rees (https://github.com/BradReesWork) - ralph (https://github.com/nv-rliu) URL: #3866
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
python/cugraph/cugraph/datasets/metadata/dining_prefs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: dining_prefs | ||
file_type: .csv | ||
description: Classic social networking dataset describes dining preferences for a dormitory in New York state. | ||
author: J.L. Moreno | ||
refs: | ||
J. L. Moreno (1960). The Sociometry Reader. The Free Press, Glencoe, Illinois, pg.35 | ||
delim: " " | ||
header: None | ||
col_names: | ||
- src | ||
- dst | ||
- wgt | ||
col_types: | ||
- string | ||
- string | ||
- int | ||
has_loop: false | ||
is_directed: false | ||
is_multigraph: false | ||
is_symmetric: true | ||
number_of_edges: 42 | ||
number_of_nodes: 26 | ||
url: https://data.rapids.ai/cugraph/datasets/dining_prefs.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters