You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Absolutely love this tutorial, thanks for connecting the dots on D3's data structures and Vue's reactivity!
One thing I noticed while working through was that the nest function has been deprecated in favor of group and rollup. I was able to arrive at the same result with some changes in the Chart component:
// replace this:constnestedTweets=d3.nest().key(d=>d.user).entries(this.tweetData);// with this:constnestedTweets=d3.group(this.tweetData,d=>d.user)
Absolutely love this tutorial, thanks for connecting the dots on D3's data structures and Vue's reactivity!
One thing I noticed while working through was that the
nest
function has been deprecated in favor ofgroup
androllup
. I was able to arrive at the same result with some changes in the Chart component:The text was updated successfully, but these errors were encountered: