Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MichaelHogers/xSpreadsheet
RXSpreadsheet provides a wrapper for https://github.com/myliang/x-spreadsheet, a very nice web-based JavaScript canvas spreadsheet. RXSpreadsheet is a minimalistic wrapper.
https://github.com/MichaelHogers/xSpreadsheet
Last synced: 2 months ago
JSON representation
RXSpreadsheet provides a wrapper for https://github.com/myliang/x-spreadsheet, a very nice web-based JavaScript canvas spreadsheet. RXSpreadsheet is a minimalistic wrapper.
- Host: GitHub
- URL: https://github.com/MichaelHogers/xSpreadsheet
- Owner: MichaelHogers
- License: other
- Created: 2020-05-02T12:25:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-16T15:25:18.000Z (over 1 year ago)
- Last Synced: 2024-04-23T10:20:47.839Z (9 months ago)
- Language: R
- Homepage: https://michaelhogers.github.io/xSpreadsheet/
- Size: 1.69 MB
- Stars: 28
- Watchers: 1
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- awesome-shiny-extensions - xSpreadsheet - R wrapper for the JavaScript canvas spreadsheet library x-spreadsheet. (UI Components / Table)
- jimsghstars - MichaelHogers/xSpreadsheet - RXSpreadsheet provides a wrapper for https://github.com/myliang/x-spreadsheet, a very nice web-based JavaScript canvas spreadsheet. RXSpreadsheet is a minimalistic wrapper. (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# xSpreadsheet
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/xSpreadsheet)](https://CRAN.R-project.org/package=xSpreadsheet)
[![Codecov test coverage](https://codecov.io/gh/MichaelHogers/xSpreadsheet/branch/master/graph/badge.svg)](https://app.codecov.io/gh/MichaelHogers/xSpreadsheet?branch=master)
[![R-CMD-check](https://github.com/MichaelHogers/xSpreadsheet/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/MichaelHogers/xSpreadsheet/actions/workflows/R-CMD-check.yaml)The goal of xSpreadsheet is to ...
## Installation
You can install the development version of xSpreadsheet from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("MichaelHogers/xSpreadsheet")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(xSpreadsheet)
## basic example code
```What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so:
```{r cars}
summary(cars)
```You'll still need to render `README.Rmd` regularly, to keep `README.md` up-to-date. `devtools::build_readme()` is handy for this. You could also use GitHub Actions to re-render `README.Rmd` every time you push. An example workflow can be found here: .
You can also embed plots, for example:
```{r pressure, echo = FALSE}
plot(pressure)
```In that case, don't forget to commit and push the resulting figure files, so they display on GitHub and CRAN.