Skip to content

❗ This is a read-only mirror of the CRAN R package repository. tidycharts — Generate Tidy Charts Inspired by 'IBCS'. Homepage: https://mi2datalab.github.io/tidycharts/https://github.com/MI2DataLab/tidycharts

Notifications You must be signed in to change notification settings

cran/tidycharts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tidycharts

R-CMD-check CRAN monthly downloads CRAN_Status_Badge Codecov test coverage

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.

Installation

You can install the released version of tidycharts from CRAN with:

install.packages("tidycharts")

Development version from GitHub can be installed with:

devtools::install_github("MI2DataLab/tidycharts")

Example

How to create IBCS inspired charts using tidycharts?

library(tidycharts) # load the package

# create some data to visualize
df <- data.frame(months = month.abb[1:6],
                 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')

About

❗ This is a read-only mirror of the CRAN R package repository. tidycharts — Generate Tidy Charts Inspired by 'IBCS'. Homepage: https://mi2datalab.github.io/tidycharts/https://github.com/MI2DataLab/tidycharts

Resources

Stars

Watchers

Forks

Packages

No packages published