knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Here you can check the results for the survey about which is the favorite template of the users, that you can find here!

library(tastypie)
survdata <- read.csv("https://docs.google.com/spreadsheets/d/e/2PACX-1vSAK7o0aJ0N7OWfMSHbV6CydNsq7In8f3XejxqgNiLHeewFtvp5ANQwkKHbRuSbHPjJjjx9GpMuKplO/pub?gid=1813199213&single=true&output=csv")
a <- table(survdata[,2])
a <- data.frame(a)
pie_bake(a, template = "donut1", perc = TRUE, title = "Which is your favorite template?",
         group_name = "Template:")


PaoloDalena/tastypie documentation built on Sept. 14, 2023, 6:11 p.m.