# A tibble: 2 × 7 wine Fruity Acidic Oaky Tannic Sweet Body <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> 1 A 4 2 2 5 5 6 2 B 6 6 5 1 2 3
wine %>%ggradar(# The circular outlines:# min to max: 1-6; and merge the circular min and mid linegrid.min =1, grid.mid =1, grid.max =6, # values to display on the circular outlinevalues.radar =c(1, 1, 6), # not show the middle level circular outlinelabel.gridline.mid = F, # set the min and mid (merged) circular outlinegridline.max.colour ="salmon1",gridline.mid.colour ="salmon1", # radiant linesaxis.line.colour ="salmon1", # radar backgroundbackground.circle.colour ="gold",background.circle.transparency = .05,# the polygon colorfill = T, fill.alpha = .1 ) +theme(legend.position ="none") +annotate(geom ="text", x =c(-7.5, 5), y =c(.3, 5.5), label =c("wine of\nchampion", "wine of\nglory"), color =c("red4", "purple4"), fontface ="bold", size =6)
Learn how to create this awesome stacked ribbon / alluvium plot, which shows dynamic shifts in the migrant population to the United States from 1820 to 2009.
Check out how to generate exploded donut plots in a U.S. map layout that visualizes the state-wise voting results of the 2016 Presidential Election between Hillary Clinton and Donald Trump .