Statistical Computation over Web
This is an example of use Rcgi -- a web interface to the software R.
This version do not have a graphic output. In many cases we do not
request a plot and this saves time. If you need graphic output, see
the example at here .
There is also a similar
interface to Octave/Matlab, if you prefer.
Also, the computation is done on a computer at University of Kentucky,
So please do not submit codes that will take a long time to run or
take up a lot of memory. It is intended for occational, quick computations
for those do not have R on their own computers. If you like it, you should
get your own copy of
R -- it is free!
Click "Go!" will run the code "rnorm(10)". You can change the code,
then click "Go!"
The Rcgi code are based on the work of
MJ Ray
(release 3a).
I made a few changes to have this minimalist version and
reflect the more recent version of R.
Want to use it in your own html page?
You can easily use the Rcgi within your html page, providing hands-on
examples. All you need is the following paragraph inside you HTML
document. (Change the one line R code rnorm(10) if you like.)
<form method="post" action="http://www.ms.uky.edu/~statweb/cgi-bin/goR3nopic.cgi">
<textarea name="INPUT" rows="6" cols="64">
rnorm(10)
</textarea><br><input type="SUBMIT" value="Go!" >
</form>
That's it!