|
|
|
|
|
by couchand
4121 days ago
|
|
R is a very powerful tool, but I fail to see how it's adding value in this case. It seems like the author is advocating just using R to clean up the data and put it in JSON. The same can be done (without overhead for context switching and server-client architecture) in JS itself. Tools like Crossfilter [0] can be seamlessly integrated with D3. [0]: https://square.github.io/crossfilter/ |
|
1) Use R clean the data
2) Use R to turn the raw data into analytically data
3) Use R to do exploratory charting etc
[Most project stop here]
4) Final Product: RMarkdown (For static reports), Shiny (Interactive variable charts), or now D3 if I want to have interactive charts. My interactive charts would be very few.
I wouldn't want to do the first three steps with javascript.