Displaying 1 result from an estimated 1 matches for "arbibrarily".
Did you mean:
abitrarily
2011 Oct 31
1
googleVis motionchart - slow with Date class
...quot;)
M <- gvisMotionChart(subData, idvar="country.name", timevar="year", options=list(width=700, height=600))
plot(M)
This works fine and I can smoothly move back and forth between the scatter plots and the line plots.
## here I express the date as a Date class object - arbibrarily assigning each year to June 1st.
subData$year2 <- as.Date(ISOdate(subData$year, 6, 1 ))
M2 <- gvisMotionChart(subData, idvar="country.name", timevar="year2", options=list(width=700, height=600))
plot(M2)
Using Chrome, this plot is very slow to load and it appears when...