
===========
TABLE SETUP
===========

graph_s_pagerank.nyc_neighborhood table object successfully created.
Creating records from the nyc_neighborhood.csv file.
2166 records inserted into graph_s_pagerank.nyc_neighborhood table.

Checking to see if table demo.nyctaxi exists.
Table demo.nyctaxi exists.

Joining demo.nyctaxi to graph_s_pagerank.taxi_tables_joined to filter out data that could skew the taxi graphs.
graph_s_pagerank.taxi_tables_joined view created: OK

Unioning graph_s_pagerank.taxi_tables_joined to itself contain the graph's nodes.
graph_s_pagerank.nyctaxi_nodes union created: OK

Creating a projection from graph_s_pagerank.taxi_tables_joined to contain the graph's edges.
graph_s_pagerank.nyctaxi_edges_id projection created: OK

===========
GRAPH SETUP
===========

Creating graph_s_pagerank.nyctaxi_graph_id
graph_s_pagerank.nyctaxi_graph_id creation success!
Number of nodes: 12004
Number of edges: 8885

========================
PAGE RANK SOLVER EXAMPLE
========================

Solving graph_s_pagerank.nyctaxi_graph_id using PAGE_RANK solver type.
graph_s_pagerank.nyctaxi_graph_id graph solved: OK

graph_s_pagerank.nyctaxi_nodes_sharded projection created: OK
graph_s_pagerank.nyctaxi_graph_id_page_rank_solved_sharded projection created: OK
graph_s_pagerank.page_rank_results_joined join view created: OK

Top 10 nodes sorted by cost (highest to lowest):
+-------------+------------+----------------------+-------------+
|   Longitude |   Latitude |                   ID |        Cost |
|-------------+------------+----------------------+-------------|
|    -74.0028 |    40.7606 | -5733631352137098805 | 0.000197256 |
|    -73.9935 |    40.7513 | -5733631352137098805 | 0.000197256 |
|    -73.9873 |    40.7451 | -5733631352137098805 | 0.000197256 |
|    -73.9823 |    40.7401 | -5733631352137098805 | 0.000197256 |
|    -73.9771 |    40.7879 |  7374672091319971430 | 0.000197256 |
|    -73.9651 |    40.7758 |  7374672091319971430 | 0.000197256 |
|    -73.9648 |    40.7755 |  7374672091319971430 | 0.000197256 |
|    -73.9573 |    40.768  |  7374672091319971430 | 0.000197256 |
|    -74.0059 |    40.7401 | -2255210994170551411 | 0.00019047  |
|    -74.0053 |    40.7395 | -2255210994170551411 | 0.00019047  |
+-------------+------------+----------------------+-------------+
