0

guys. I've been trying to do some work with some data for a capstone class I am currently in. This data is in Excel and I have converted it to JSON using a converter online. The problem with this data is that it doesn't have children elements and making the children by hand would take hours because it's ~15,000 lines. Is it possible to make bubble charts without using children data? I've tried finding examples and answers, but I have yet to find any.

Here is an example of what I'm roughly trying to make it look it.

Thanks in advance for any replies!

  • why not just convert it properly, instead? export to some "convenient to read in" format for your favourite scripting language, and use that to regenerate the data in a form D3 can work with. – Mike 'Pomax' Kamermans Mar 21 '15 at 19:37
  • What does the data currently look like? Update your question with an example. – Mark Mar 22 '15 at 00:40

1 Answers1

0

You can transform tabular data to nested data using supergroup or Underscore.Nest

Sigfried
  • 2,943
  • 3
  • 31
  • 43