knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
rroughviz
devtools::install_github('tidyss/rroughviz')
bar,barh,donut,pie are Same usage
library(rroughviz) rough_bar(iris$Species)
labels <- c('a','b') values <- c(5,10) rough_barh(labels = labels,values = values)
rough_donut(iris$Species)
rough_pie(iris$Species)
data <- women rough_line(data)
rough_scatter(iris$Sepal.Length,iris$Sepal.Width)
data <- data.frame( month = c('Jan','Fre'), A = c(10,20), B = c(5,10) ) rough_stackedbar(data,labels = 'month')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.