- Notifications
You must be signed in to change notification settings - Fork0
https://mi2datalab.github.io/tidycharts/
License
NotificationsYou must be signed in to change notification settings
MI2DataLab/tidycharts
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
The goal of tidycharts is to enable R users to create charts inspired byInternational Business Communication Standards(IBCS). The plots are generated in SVG format,so embedding them in HTML documents is straight forward.
You can install the released version of tidycharts fromCRAN with:
install.packages("tidycharts")Development version fromGitHub can be installedwith:
devtools::install_github("MI2DataLab/tidycharts")
How to create IBCS inspired charts using tidycharts?
library(tidycharts)# load the package# create some data to visualizedf<-data.frame(months=month.abb[1:6],values= round(5+ sin(1:6),2))# create chart in a form of character vector containing SVG contentcolumn_chart(df,x='months',series='values')
You can easily create other type of plots, ie. lineplots:
line_chart_markers(df,x=df$months,series='values',series_labels='values')
About
https://mi2datalab.github.io/tidycharts/
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Contributors4
Uh oh!
There was an error while loading.Please reload this page.

