Difference between revisions of "ISSS608 2016-17 T3 ROGER DATA EXPLORATION"

From Visual Analytics and Applications
Jump to navigation Jump to search
Line 37: Line 37:
 
First, the map has been added in tableau. At every location point right click is done, and annotate point option is selected. This gives us the X and Y coordinates for every point.
 
First, the map has been added in tableau. At every location point right click is done, and annotate point option is selected. This gives us the X and Y coordinates for every point.
 
<br />
 
<br />
[[File:1 Anootate Point.png|800px|centre]]
+
[[File:1 Anootate Point.PNG|800px|centre]]
 
<br />
 
<br />
 
In this similar way, all the location coordinates are found and is joined with the given sensor data based on the gate names.
 
In this similar way, all the location coordinates are found and is joined with the given sensor data based on the gate names.
 
<br />
 
<br />
[[File:2 Sensor Data.png|800px|centre]]
+
[[File:2 Sensor Data.PNG|800px|centre]]
 
<br />
 
<br />
 
The formula used to calculate seconds spent is shown below. Only if the previous car id and current car id are the same, then the number of seconds spent is calculated by subtracting time with the time of the previous row.
 
The formula used to calculate seconds spent is shown below. Only if the previous car id and current car id are the same, then the number of seconds spent is calculated by subtracting time with the time of the previous row.
 
<br />
 
<br />
[[File:3 Seconds Spent Formula.png|800px|centre]]
+
[[File:3 Seconds Spent Formula.PNG|800px|centre]]
 
<br />
 
<br />
 
From the date, the day and the hour are calculated using the data and time functions.
 
From the date, the day and the hour are calculated using the data and time functions.
 
<br />
 
<br />
[[File:4 Day and Hour.png|800px|centre]]
+
[[File:4 Day and Hour.PNG|800px|centre]]
 
<br />
 
<br />
 
The day of the week is captured using the formula as shown below.
 
The day of the week is captured using the formula as shown below.
 
<br />
 
<br />
[[File:5 Weekday.png|800px|centre]]
+
[[File:5 Weekday.PNG|800px|centre]]
 
<br />
 
<br />
 
For multiple day users, the day of the trip is calculated using the below formula.
 
For multiple day users, the day of the trip is calculated using the below formula.
 
<br />
 
<br />
[[File:6 Multiple Day Users.png|800px|centre]]
+
[[File:6 Multiple Day Users.PNG|800px|centre]]
 
<br />
 
<br />
 
To find single day users and multiple day users,
 
To find single day users and multiple day users,
 
1. Create a summary table by grouping car-id and day fields.
 
1. Create a summary table by grouping car-id and day fields.
 
<br />
 
<br />
[[File:7 Grouping.png|800px|centre]]
+
[[File:7 Grouping.PNG|800px|centre]]
 
<br />
 
<br />
 
2. Another summary table is made by grouping car id and providing N(days) as value.
 
2. Another summary table is made by grouping car id and providing N(days) as value.
 
<br />
 
<br />
[[File:8 Summary table.png|800px|centre]]
+
[[File:8 Summary table.PNG|800px|centre]]
 
<br />
 
<br />
 
3. The result provides car id with no of days spent.
 
3. The result provides car id with no of days spent.
 
<br />
 
<br />
[[File:9 Users and no of days.png|800px|centre]]
+
[[File:9 Users and no of days.PNG|800px|centre]]
 
<br />
 
<br />
 
4. Now filter one day visitors where N(day) is 1 and the rest are multiple day users. These filtered data sets can be used for analysis.
 
4. Now filter one day visitors where N(day) is 1 and the rest are multiple day users. These filtered data sets can be used for analysis.

Revision as of 10:57, 16 July 2017

Bird cover.jpg VAST MINI CHALLENGE 1

Main Page

Data Exploration

Visualizations

Insights

Conclusion

References

 

First, the map has been added in tableau. At every location point right click is done, and annotate point option is selected. This gives us the X and Y coordinates for every point.

1 Anootate Point.PNG


In this similar way, all the location coordinates are found and is joined with the given sensor data based on the gate names.

2 Sensor Data.PNG


The formula used to calculate seconds spent is shown below. Only if the previous car id and current car id are the same, then the number of seconds spent is calculated by subtracting time with the time of the previous row.

3 Seconds Spent Formula.PNG


From the date, the day and the hour are calculated using the data and time functions.

4 Day and Hour.PNG


The day of the week is captured using the formula as shown below.

5 Weekday.PNG


For multiple day users, the day of the trip is calculated using the below formula.

6 Multiple Day Users.PNG


To find single day users and multiple day users, 1. Create a summary table by grouping car-id and day fields.

7 Grouping.PNG


2. Another summary table is made by grouping car id and providing N(days) as value.

8 Summary table.PNG


3. The result provides car id with no of days spent.

9 Users and no of days.PNG


4. Now filter one day visitors where N(day) is 1 and the rest are multiple day users. These filtered data sets can be used for analysis.