forked from no-types/RagGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request no-types#1 from vbisrikkanth/master
Bugfixes and update
- Loading branch information
Showing
3 changed files
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Package: RagGrid | ||
Type: Package | ||
Title: A Wrapper of the JavaScript Library 'DataTables' | ||
Title: A Wrapper of the JavaScript Library 'ag-Grid'. | ||
Version: 0.1.1 | ||
Authors@R: c( | ||
person("Praveen", "N", email = "[email protected]", role = c("aut", "cre")), | ||
person("Srikkanth", "M",email = "[email protected]",role = c("aut", "ctb")) | ||
) | ||
Maintainer: Praveen N<[email protected]>, Srikkanth M<[email protected]> | ||
Description: Data objects in R can be rendered as HTML tables using the | ||
JavaScript library 'DataTables' (typically via R Markdown or Shiny). The | ||
'DataTables' library has been included in this R package. The package name | ||
'DT' is an abbreviation of 'DataTables'. | ||
JavaScript library 'ag-grid' (typically via R Markdown or Shiny). The | ||
'ag-grid' library has been included in this R package. The package name | ||
'RagGrid' is an abbreviation of 'R agGrid'. | ||
URL: https://github.com/praveenn-vbi/RagGrid/ | ||
BugReports: https://github.com/praveenn-vbi/RagGrid/issues | ||
License: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# R agGrid | ||
R interface to ag-grid. | ||
|
||
This package provides a function `RagGrid()` to display R data via the [ag-grid](https://www.ag-grid.com/) library. | ||
|
||
## Installation | ||
|
||
We're still actively developing and hopefully it'll be available in CRAN soon. | ||
|
||
But feel free to install from github. | ||
You may install the development version using **devtools**: | ||
|
||
```r | ||
|
||
# the development version | ||
devtools::install_github('praveenn-vbi/RagGrid') | ||
|
||
# then try DT::datatable(iris) as a hello world example | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters