Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/htmlwidgets/sparkline
jQuery Sparkline HTML Widget for R
https://github.com/htmlwidgets/sparkline
Last synced: 3 months ago
JSON representation
jQuery Sparkline HTML Widget for R
- Host: GitHub
- URL: https://github.com/htmlwidgets/sparkline
- Owner: htmlwidgets
- License: other
- Created: 2014-07-18T17:31:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-28T17:55:55.000Z (over 5 years ago)
- Last Synced: 2024-05-14T12:32:20.733Z (6 months ago)
- Language: JavaScript
- Size: 791 KB
- Stars: 241
- Watchers: 26
- Forks: 40
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - sparkline - jQuery Sparkline (tiny inline charts) HTML Widget for R. [Use sparklines in DT](https://github.com/leonawicz/HtmlWidgetExamples). (Visualization / Sparkline)
- jimsghstars - htmlwidgets/sparkline - jQuery Sparkline HTML Widget for R (JavaScript)
README
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/sparkline)](https://cran.r-project.org/package=sparkline)
## Sparkline
This is an R package that provides support for [jquery sparkline](http://omnipotent.net/jquery.sparkline/#s-about) as a [htmlwidget](http://htmlwidgets.org).
### Installation
`sparkline` is on CRAN, so you can `install.packages("sparkline")`.
For the latest development version, please use `devtools::install_github("sparkline").
```r
library(devtools)
install_github('htmlwidgets/sparkline')
```### Usage
The API is designed to be simple.
```r
x = rnorm(20)
sparkline(x)
sparkline(x, type = 'bar')
sparkline(x, type = 'box')
```You can also use it in an R Markdown document.
---
title: "jquery Sparkline HTML Widget"
author: "Ramnath Vaidyanathan"
date: "July 18, 2014"
output: html_document
---```{r}
library(htmlwidgets)
library(sparkline)
set.seed(1234)
x = rnorm(10)
y = rnorm(10)
```Inline line graphs `r sparkline(x)`
Bar charts `r sparkline(abs(x), type = 'bar')` negative values: `r sparkline(x, type = 'bar')`
| Stock | Sparkline | Boxplot
|-------|-------------------|--------
| x | `r sparkline(x)` | `r sparkline(x, type ='box')`
| y | `r sparkline(y)` | `r sparkline(y, type ='box')`
![sparkline](http://i.imgur.com/B99qnBj.png)### Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.