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
The sunburstR package rounds counts without the user asking too. How can I change this behavior? Below the numbers will display as 810, 120, 140 respectively. This doesn't happen when numbers are < 100. From the documentation there doesn't seem to be a way to address this.
The sunburstR package rounds counts without the user asking too. How can I change this behavior? Below the numbers will display as 810, 120, 140 respectively. This doesn't happen when numbers are < 100. From the documentation there doesn't seem to be a way to address this.
library(sunburstR)
df <- data.frame(path = c("A","B","C"),
pop = c(808,124,136))
sunburst(df, count = TRUE, width = "100%",
height = 400)
The text was updated successfully, but these errors were encountered: