diff --git a/index.html b/index.html index f649d36..392c2ef 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@
Make R speakable!
The goal of {r2eng} (as in ‘R to English’) is to take an R expression and ‘translate’ it to an English sentence.
-The package is intended to:
+The package is intended (optimistically) to:
remotes::install_github("matt-dray/r2eng")
-This package depends on {purrr} and {rlang}.
+This package depends on {rlang}.
The main function in the package is translate()
. It uses non-standard evaluation, so you pass it a bare R expression like this:
-r2eng::translate(variable <- 1, speak = TRUE)
+r2eng::translate(variable <- 1, speak = FALSE)
# Original expression: variable <- 1
# English expression: variable gets 1
Set speak = TRUE
for a system call that will read the English sentence out loud (macOS only).