Sunday, January 16, 2022

Collapsible Trees in R

d3Trees in R

Sample d3Tree

if(!require("d3Tree")){
  
  install.packages("d3Tree")
}else{
  
  library(d3Tree)
}
d3tree(list(root = df2tree(rootname = 'book',
                           struct = stan.models),
            layout = 'collapse')
)


No comments:

Post a Comment

Price Elasticity Model in Python

Price Elasticity Analysis in Python Introduction ¶ In this blog we will look at how to find the price e...