# populations.csv
state , population
California , 38332521
Texas , 26448193
New York , 19651127
Florida , 19552860
Illinois , 12882135
Pennsylvania , 12773801
Ohio , 11570808
Georgia , 9992167
Michigan , 9895622
North Carolina , 9848060
New Jersey , 8899339
...
# populations.csv
state , population , county , population
Montana , 1032949 , Yellowstone County , 157048
Montana , 1032949 , Missoula County , 114181
Montana , 1032949 , Gallatin County , 100739
Montana , 1032949 , Flathead County , 96165
Montana , 1032949 , Cascade County , 82278
Montana , 1032949 , Lewis and Clark County , 66418
...
SELECT C.county, S.year_founded
FROM Counties C
JOIN States S on S.state = C.state
neo4j: https://neo4j.com/
neo4j running: http://localhost:7474/
neo4j R driver: https://github.com/nicolewhite/RNeo4j
neo4j cypher documentation: https://neo4j.com/docs/developer-manual/current/cypher/
github.com/useRbozeman/intro-to-graphdb
data > contacts.csv
Expansion: I want to weight the contacts by duration of contact.
Who has most total contact time?
github.com/useRbozeman/intro-to-graphdb
data > graph1.csv
A single contact event can include more than two sheep
github.com/useRbozeman/intro-to-graphdb
data > graph2.csv
Contact with other things!