From 600a98b2f57ea5dc41ac6c009a880e48317be7f2 Mon Sep 17 00:00:00 2001 From: Tom Kraljevic Date: Sun, 2 Feb 2014 00:32:32 -0800 Subject: [PATCH] More tweaking of the formatting and language for R stuff. --- packaging/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packaging/index.html b/packaging/index.html index c3430f6478..da65146067 100644 --- a/packaging/index.html +++ b/packaging/index.html @@ -115,7 +115,7 @@


-Installation of H2O from an R package repository +Installation of H2O directly from an R package repository

@@ -126,11 +126,11 @@

Any -# The following commands detach and remove any previously installed H2O packages. +# The following four commands remove any previously installed H2O packages for R.
-# These might give error output if H2O is not currently loaded or was not previously +# These might give error output if H2O is not currently loaded or was not previously installed.
-# installed. You can safely ignore these errors. +# You can safely ignore any such errors.
detach("package:h2o", unload=TRUE)
@@ -141,7 +141,7 @@

remove.packages("h2oRClient")

-# Download, install and initialize the H2O package directly from inside R. +# Next, we download, install and initialize the H2O package for R.
install.packages("h2o", repos=(c("/R", getOption("repos"))))
@@ -150,7 +150,7 @@

localH2O = h2o.init(silentUpgrade=TRUE)

-# Run a demo. +# Finally, run a demo to see H2O work.
demo(h2o.glm)