The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The goal of tidycharts is to enable R users to create charts inspired by International 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 from CRAN with:
install.packages("tidycharts")
Development version from GitHub can be installed with:
::install_github("MI2DataLab/tidycharts") devtools
How to create IBCS inspired charts using tidycharts?
library(tidycharts) # load the package
# create some data to visualize
<- data.frame(months = month.abb[1:6],
df values = round(5 + sin(1:6), 2))
# create chart in a form of character vector containing SVG content
column_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')
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.