#Value graph

ggPieDonut(browsers,aes(pies=browser, donuts=version, count=share))

#Count graph #If we don’t include count=, it will count one by one, not the values

ggPieDonut(browsers,aes(pies=browser, donuts=version))

#Table

browsers %>% arrange(desc(share)) %>% DT::datatable()