Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quarto-dev/quarto-r
R interface to quarto-cli
https://github.com/quarto-dev/quarto-r
Last synced: 3 months ago
JSON representation
R interface to quarto-cli
- Host: GitHub
- URL: https://github.com/quarto-dev/quarto-r
- Owner: quarto-dev
- Created: 2021-02-02T20:14:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-23T09:59:05.000Z (4 months ago)
- Last Synced: 2024-07-24T10:12:01.206Z (4 months ago)
- Language: R
- Homepage: https://quarto-dev.github.io/quarto-r/
- Size: 5.12 MB
- Stars: 140
- Watchers: 12
- Forks: 21
- Open Issues: 48
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-quarto - R - [R](https://www.r-project.org/) interface package to Quarto CLI. (Libraries/Packages/Scripts)
- jimsghstars - quarto-dev/quarto-r - R interface to quarto-cli (R)
README
[![CRAN status](https://www.r-pkg.org/badges/version/quarto)](https://CRAN.R-project.org/package=quarto)
[![R-CMD-check](https://github.com/quarto-dev/quarto-r/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/quarto-dev/quarto-r/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/quarto-dev/quarto-r/branch/main/graph/badge.svg)](https://app.codecov.io/gh/quarto-dev/quarto-r?branch=main)[Quarto](https://quarto.org) is an open-source scientific and technical publishing system built on [Pandoc](https://pandoc.org).
The **quarto** package provides an R interface to frequently used operations in the Quarto Command Line Interface (CLI). The package is not a requirement for using Quarto with R. Rather, it provides an R interface to common Quarto operations for users who prefer to work in the R console rather than a terminal, and for package authors that want to interface with Quarto using scripts.
Before using the Quarto R package, you should install the Quarto CLI from .
## Installing the package
Latest released version from CRAN
```r
# latest release version
install.packages("quarto")
```Latest dev version from Github
```r
# dev version
pak::pak("quarto-dev/quarto-r")
# or
remotes::install_github("quarto-dev/quarto-r")
```or Latest build of dev version from r-universe
```r
install.packages('quarto', repos = c('https://quarto-dev.r-universe.dev', 'https://cloud.r-project.org'))
```Look at the [Functions Reference page](https://quarto-dev.github.io/quarto-r/reference/index.html) to see the list of functions available in the package.