Difference between revisions of "Project Timeline"

From Visual Analytics and Applications
Jump to navigation Jump to search
 
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
<!--MAIN HEADER -->
 
<!--MAIN HEADER -->
 
{|style="background-color:#1B338F;" width="100%" cellspacing="0" cellpadding="0" valign="top" border="0"  |
 
{|style="background-color:#1B338F;" width="100%" cellspacing="0" cellpadding="0" valign="top" border="0"  |
| style="font-family:Century Gothic; font-size:100%; solid #000000; background:#2B3856; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #000000; background:#2B3856; text-align:center;" width="15%" |  
 
;
 
;
 
[[Introduction| <font color="#FFFFFF">Introduction</font>]]
 
[[Introduction| <font color="#FFFFFF">Introduction</font>]]
  
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="15%" |  
 
;
 
;
 
[[About| <font color="#FFFFFF">About</font>]]
 
[[About| <font color="#FFFFFF">About</font>]]
  
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="18.33%" |  
 
;
 
;
 
[[Project Proposal| <font color="#FFFFFF">Project Proposal</font>]]
 
[[Project Proposal| <font color="#FFFFFF">Project Proposal</font>]]
  
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#F5F6CE; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#F5F6CE; text-align:center;" width="18.33%" |  
 
;
 
;
[[Project Timeline| <font color="#1C1C1C">Packages Used</font>]]
+
[[Project Timeline| <font color="#1C1C1C">Data Preparation</font>]]
  
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="18.33%" |  
 
;
 
;
 
[[App & Deliverables| <font color="#FFFFFF">App & Deliverables</font>]]
 
[[App & Deliverables| <font color="#FFFFFF">App & Deliverables</font>]]
  
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="16.66%" |  
+
| style="font-family:Century Gothic; font-size:100%; solid #1B338F; background:#2B3856; text-align:center;" width="15%" |  
 
;
 
;
 
[[Poster| <font color="#FFFFFF">Poster</font>]]
 
[[Poster| <font color="#FFFFFF">Poster</font>]]
Line 33: Line 33:
 
<!--MAIN HEADER -->
 
<!--MAIN HEADER -->
 
==Data Preparation==
 
==Data Preparation==
 +
A complete step by step guide of how to prepare the nodes and edges table used for this visualisation is available through this markdown document accessed [http://rpubs.com/kishan19/297073 from here.]
  
 
The flow chart below illustrates how the various R packages used in building our application interplay with one another.
 
The flow chart below illustrates how the various R packages used in building our application interplay with one another.

Latest revision as of 16:30, 7 August 2017

Discovering traffic patterns by using network graph visualisations

Introduction

About

Project Proposal

Data Preparation

App & Deliverables

Poster

 

Data Preparation

A complete step by step guide of how to prepare the nodes and edges table used for this visualisation is available through this markdown document accessed from here.

The flow chart below illustrates how the various R packages used in building our application interplay with one another.

Flow Chart G1.jpg


  1. The raw data is first split into nodes and edges on excel
  2. Data cleaning is then done on both files using the package, tidyverse. The edges have the column "cartype" recoded and the timestamp formatted by the package, lubridate which allows us to filter out the hour component of the timestamp.
  3. The edges are also aggregated into another separate variable which will be used for the main visualization to shorten the loading time.
  4. On the other hand, the nodes have their coordinates added which is made possible by a software called QGIS.
  5. The previous step is necessary so that the coordinates of each gate can be plotted onto R with the module, ggnetwork.
  6. Gate categories were then added to classify the 40 nodes.
  7. The steps above summarise the basic steps taken in data preparation. Using the variables created above, the basic graph can then be plotted as an object with the package, igraph.
  8. The package, ggraph then serves as a wrapper for our igraph object, enabling various aesthetics options such as layout, facet, colors and tooltips etc.
  9. An additional data table is created as well with the package, DT to visualise our raw data so that users can access them easily via our application.
  10. Lastly, the entire network is made interactive via shiny.