Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created February 27, 2013 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmcw/5049465 to your computer and use it in GitHub Desktop.
Save tmcw/5049465 to your computer and use it in GitHub Desktop.
var x = {"Wine": {"1": 11, "10": 10, "23": 12, "22": 13, "15": 9}}
d3.entries(x.Wine).map(function(d) {
return {
hour: +d.key,
y: d.value
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment