Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

MI2DataLab/tidycharts

Repository files navigation

R-CMD-checkCRAN monthly downloadsCRAN_Status_BadgeCodecov test coverage

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.

Installation

You can install the released version of tidycharts fromCRAN with:

install.packages("tidycharts")

Development version fromGitHub can be installedwith:

devtools::install_github("MI2DataLab/tidycharts")

Example

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')


[8]ページ先頭

©2009-2025 Movatter.jp