thomas-neitmann / ggcharts

Get You to Your Desired Plot Faster
https://thomas-neitmann.github.io/ggcharts/index.html
Other
290 stars 35 forks source link

Heat Map, Histogram and Box Plot #70

Open AkshHirpara opened 4 years ago

AkshHirpara commented 4 years ago

Kindly add Heat Map, Histogram, and Box-Plot. It will be very helpfull. This is a wonderful package.

thomas-neitmann commented 4 years ago

Thanks for the suggestions @AkshHirpara! A histogram( ) function is already in the making. I've been hesitant about adding boxplots because they are so easy to create with plain ggplot2, e.g.

ggplot(mtcars, aes(factor(cyl), mpg)) +
  geom_boxplot()

Do you have an example of the kind of boxplots and heatmaps you'd like to see in the package?