Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noamross/googledocs
https://github.com/noamross/googledocs
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/noamross/googledocs
- Owner: noamross
- License: other
- Created: 2018-11-26T15:50:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-26T15:50:47.000Z (almost 6 years ago)
- Last Synced: 2024-08-13T07:14:33.340Z (3 months ago)
- Language: R
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - noamross/googledocs - (R)
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# googledocsThe goal of googledocs is to ...
## Installation
You can install the released version of googledocs from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("googledocs")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
## 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.
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!