Replies: 5 comments 20 replies
-
any requirements on R version? |
Beta Was this translation helpful? Give feedback.
-
need to fix the final double quotation mark in |
Beta Was this translation helpful? Give feedback.
-
All examples work and well-commented. I think we need one or two examples of visualization with popular packages like
|
Beta Was this translation helpful? Give feedback.
-
I'm having issues getting this to work on Mac. When I run one of the apps the wave server appears to be working as I can see stuff happening in terminal. For example, while
However, when I navigate to localhost:10101/demo I just get a blank page. I've tried reloading, switching from Chrome to Safari, and changing
|
Beta Was this translation helpful? Give feedback.
-
2.1. Was the code readable?
Was the code idiomatic? Were you able to execute the examples easily? Was the code readable? Was the code brief? Was the code ergonomic? Any other comments you would like to provide about the package? examples? experience? |
Beta Was this translation helpful? Give feedback.
-
Hello and thank you for signing up to test
h2owave
package for R. Internally, it is called as rdriver by the wave team.To be able to successfully run the
h2owave
library, and example codes please follow the steps below.There are 5 libraries that are needed by
h2owave
libraryjsonlite
devtools
httr
R6
stringr
You can install these packages by conveniently cutting and pasting the following code and by choosing a mirror:
install.packages(c("R6","devtools","jsonlite","stringr","httr"))
Once these libraries are installed you can go ahead and install the
h2owave
package.install.packages(“path_to_package/h2owave_0.0.14.tar.gz",repos=NULL,type="source")
$R CMD INSTALL path_to_package/h2owave_0.0.14.tar.gz
Download the wave server version 0.13 from here https://github.com/h2oai/wave/releases/tag/v0.13.0
Untar the wave server, and
cd
into the directory.After installing the library you will now have to start (if you haven’t already) your wave server. At your SHELL you can run
$./waved -debug
After installing the library you can start using the example applets in two ways:
> source(“path_to_example/hello_world.R”)
You will be able to see the output of each applet on your browser at
http://localhost:10101/demo
Once you have completed running of the code successfully, Please answer the following:
Was the installation of the library easy?
Did you understand each of the examples clearly?
Did code in the examples make sense to you as a R user?
Were you able to execute the examples easily?
Any other comments you would like to provide about the package? examples? experience?
We are making changes to the package as we speak, so if something is missing please do mention it. Especially docs. We would be happy to incorporate your feedback.
Updates:
devtools
in the installation list.httr
h2owave_0.0.14.tar.gz
(please get the new one here below)h2owave_0.0.14.tar.gz
pre-examples.tar.gz
Beta Was this translation helpful? Give feedback.
All reactions