Skip to content

jasdumas/gramr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6902273 · May 27, 2017

History

59 Commits
May 27, 2017
May 27, 2017
May 27, 2017
May 27, 2017
May 26, 2017
May 25, 2017
May 26, 2017
May 26, 2017
May 25, 2017
May 27, 2017
May 25, 2017
May 27, 2017
May 27, 2017
May 26, 2017
May 26, 2017
May 25, 2017
May 26, 2017
May 26, 2017

Repository files navigation

gramr

Travis-CI Build Status Coverage Status Last-changedate minimal R version Licence

The goal of gramr is to help R programmers who can't write good and and wanna learn to do other stuff good too by checking a RMarkdown document for grammatical errors.

This package wraps the command line tool, write-good to provide grammar checking functions for Rmd or md documents. It can be used as an RStudio Addin, or from the console or command line by supplying an Rmd or md filename.

Installation

You can install gramr from github with:

# install.packages("devtools")
devtools::install_github("ropenscilabs/gramr")

Examples

write_good_ip(): run the write-good linter on text in a currently active Rmd file in RStudio

write_good_file("my_file.Rmd"): run the write-good linter on text in an Rmd file (RStudio not required)

run_grammar_checker("example.rmd"): run the write-good linter interactively

Example Output:

> write_good_file("tests/testthat/test.Rmd")

#  index offset                              reason
#1    15     12 "been defined" may be passive voice
#2    49      8       "suddenly" can weaken meaning

Contributing

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Acknowledgements

Thanks to Brian Ford for the development of write-good!