All Projects → merlinoa → rfrappe

merlinoa / rfrappe

Licence: other
htmlwidget for frappe charts js library

Programming Languages

r
7636 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to rfrappe

Collapsibletree
Create Interactive Collapsible Tree Diagrams in R using D3.js
Stars: ✭ 126 (+425%)
Mutual labels:  shiny, htmlwidgets
echarty
Minimal R/Shiny Interface to ECharts.js
Stars: ✭ 49 (+104.17%)
Mutual labels:  charts, shiny
Scatterd3
R scatter plot htmlwidget based on D3.js
Stars: ✭ 135 (+462.5%)
Mutual labels:  shiny, htmlwidgets
Dt
R Interface to the jQuery Plug-in DataTables
Stars: ✭ 451 (+1779.17%)
Mutual labels:  shiny, htmlwidgets
jsTreeR
A wrapper of the jQuery plugin `jsTree`.
Stars: ✭ 36 (+50%)
Mutual labels:  shiny, htmlwidgets
Highcharter
R wrapper for highcharts
Stars: ✭ 583 (+2329.17%)
Mutual labels:  shiny, htmlwidgets
RagGrid
R interface to ag-grid.
Stars: ✭ 31 (+29.17%)
Mutual labels:  shiny, htmlwidgets
Explor
Interfaces for Multivariate Analysis in R
Stars: ✭ 157 (+554.17%)
Mutual labels:  shiny, htmlwidgets
rAmCharts4
An R interface to amCharts 4
Stars: ✭ 26 (+8.33%)
Mutual labels:  shiny, htmlwidgets
lineup htmlwidget
HTMLWidget wrapper of LineUp for Visual Analysis of Multi-Attribute Rankings
Stars: ✭ 51 (+112.5%)
Mutual labels:  shiny, htmlwidgets
Reactable
Interactive data tables for R
Stars: ✭ 345 (+1337.5%)
Mutual labels:  shiny, htmlwidgets
vueR
vue.js for R
Stars: ✭ 131 (+445.83%)
Mutual labels:  shiny, htmlwidgets
Rhandsontable
A htmlwidgets implementation of Handsontable.js
Stars: ✭ 320 (+1233.33%)
Mutual labels:  shiny, htmlwidgets
Manipulatewidget
Add More Interactivity to htmlwidgets
Stars: ✭ 110 (+358.33%)
Mutual labels:  shiny, htmlwidgets
grillade
Grid sytem for shiny apps or rmarkdown and to create htmlwidgets matrix
Stars: ✭ 16 (-33.33%)
Mutual labels:  shiny, htmlwidgets
frappe charts
Frappé Charts Ruby gem for Rails.
Stars: ✭ 44 (+83.33%)
Mutual labels:  charts, frappe
d3Tree
htmlwidget that binds d3js collapsible trees to R and Shiny to make an interactive search tool
Stars: ✭ 79 (+229.17%)
Mutual labels:  shiny, htmlwidgets
r-ladies-ML-1
⭐ Files for my R-Ladies ML workshop - Supervised Learning 101 ⭐
Stars: ✭ 35 (+45.83%)
Mutual labels:  shiny
charts
This repository is home to the original helm charts for products throughout the open data platform ecosystem.
Stars: ✭ 39 (+62.5%)
Mutual labels:  charts
laravel-chartjs
No description or website provided.
Stars: ✭ 13 (-45.83%)
Mutual labels:  charts

rfrappe

Build Status

rfrappe is an R htmlwidget for the Frappe Charts JavaScript library. Frappe Charts creates simple, responsive, modern SVG charts with zero dependencies.

Example

Frappe Example

Above gif copied from the Frappe Charts README.

Installation

devtools::install_github("merlinoa/rfrappe")

Usage

library(rfrappe)

data <- list(
  labels = c("12am-3am", "3am-6pm", "6am-9am", "9am-12am", "12pm-3pm", 
             "3pm-6pm", "6pm-9pm", "9am-12am"),
  datasets = list(
    list(
      title = "Some Data",
      color = "light-blue",
      values = c(25, 40, 30, 35, 8, 52, 17, -4)
    ),
    list(
      title = "Another Set",
      color = "violet",
      values = c(25, 50, -10, 15, 18, 32, 27, 14)
    )
  )
)

rfrappe(list(
  title = "My Awesome Bar Chart",
  data = data,
  type = "bar"
))

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].