GDB in SV_4th_Meetup_12212016

Post on 14-Apr-2017

80 views 0 download

Transcript of GDB in SV_4th_Meetup_12212016

(graphians)-[:MEETUP]->(GDBinSV)

Agenda

• 6:30 - 7:00 Food, refreshments, and mingling• 7:00 - 7:15 Greeting & Introduction • 7:15 - 7:35 Session (Visualization tool by Joshua Bae)• 7:35 - 8:10 Meetup Networking • 8:10 - 8:20 Closing

( )-[:Sponsors]->(GDBinSV)

Bitnine’s Hybrid DBMS

AGENSGRAPH

1. Integrated Query system

+

CYPHER QUERY LANGUAGE

2. Storage Layer

3. Graph Visualizer

(4th_meetup)-[:IS_ABOUT]->(visualization_tools)

Agenda1. Graph Visualization Tools2. A tip of Importing Dataset3. Map Layers4. Node Layouts5. Query Patterns6. Icons 7. Publishing subgraphs8. Editing Data (property, edge)9. Geospatial distance formula

Graph Visualization Tools

Graph Visualization Use Cases

1. Information Technology- Network topology- Risk Assessment

2. Intelligence & Government3. Finance and Insurance

- Fraud detection4. Social Media analysis5. Bioscience / Pharmaceuticals

- Knowledge discovery

Graph Data Visualization

A tip of Data Importing (Windows Local File)1. Start Neo4j2. Create a new project folder (e.g. project_n)3. Open the http://localhost:7474/browser/4. Create the ‘import’ folder under the new project folder

Documents\Neo4j\project_n\import5. Copy the CSV file at the ‘import’ folder6. Import dataset using LOAD CSV

LOAD CSV with Headers from "file:///city.csv" AS cityCREATE (ct:City {name: city.city, state: city.state, city_state: city.city_state, lat: city.lat, lng: city.lng, population: city.pop});

Thank you!