When I plot my googleVis motion chart it shows an empty graph:
This is an example of the dataframe I use:
track time UTM_WGS84.Longitude UTM_WGS84.Latitude
1 1 1447628396 5.571687 51.43634
2 1 1447628396 5.571689 51.43634
3 1 1447628396 5.571689 51.43635
4 1 1447628397 5.571690 51.43635
5 1 1447628397 5.571691 51.43635
6 1 1447628397 5.571691 51.43635
7 1 1447628398 5.571692 51.43635
8 1 1447628398 5.571692 51.43635
9 1 1447628398 5.571693 51.43635
10 2 1447628383 5.571698 51.43638
11 2 1447628383 5.571698 51.43638
12 2 1447628384 5.571698 51.43638
13 2 1447628384 5.571699 51.43638
This is the code:
vis1 <- gvisMotionChart(dfL, idvar='track', timevar='time')
plot(vis1)
Can someone please help me figure out the problem?