CJ Yetman

Results 151 comments of CJ Yetman

@maahutch An error, or a warning? Those are significantly different.

I'm pretty sure this hack broke because `d3` is no longer added to the global namespace. You can work around that by using the `withD3 = TRUE` parameter. ```r library(sunburstR)...

This may be a better way to do it... ```r library(sunburstR) library(htmlwidgets) sequences

@mirzaabidpp you'd probably be better served on [Stack Overflow](https://stackoverflow.com) for questions like that. GitHub issues are used for reporting bugs and feature requests. Also, there is no file attached.

@mmc00 As I said in the previous comment, GitHub issues are typically used for reporting bugs and feature requests rather than support requests, and each issue is about a precise...

To be clear, you modified the existing example to use `sumNodes=FALSE`? The `sumNodes` argument is a recent addition that was added to deal with a specific data format/structure. The data...

what version of `dplyr` do you have installed? this error "Error: Argument 1 must have names" seems to be something that `dplyr::bind_rows()` reports (which is used in the internal function...

👍🏻 I'm going to reopen though in case @timelyportfolio wants to either add a specific minimum version of dplyr to the package requirements, or tinker around to find a solution...

Segments too small to see are removed [here](https://github.com/timelyportfolio/sunburstR/blob/1819c49b288a3500f52a6b98f6d0242ce0b77837/javascript/src/sunburst-chart.js#L178-L182), and I suspect the legend then crashes because you've added too many elements to `colors` and `legendOrder` (since one of those segments...

> Are you recommending I calculate the excluded segments and modify my vectors accordingly, based upon the snippet of code you highlighted? > `return (d.x1 - d.x0 > 0.005); //...