WebR – R in the Browser
webr.sh
WebR – R in the Browser
1–10 of 30 posts
Re: WebR – R in the Browser
#2Re: WebR – R in the Browser
#3Re: WebR – R in the Browser
#4Would be interesting to see if we can run shiny entirely client side with this.
Re: WebR – R in the Browser
#5Impressively, this managed to download the large nycflights13 library very quickly, and run a regression on its multimillion-row data in just a second or two.
Re: WebR – R in the Browser
#6Impressively, this managed to download the large nycflights13 library very quickly, and run a regression on its multimillion-row data in just a second or two.
That entire library/dataset is less than 5Mb compressed, which is barely larger than the size of modern commercial websites. An entire bible in uncompressed plaintext is only about 4Mb (compressed about 1Mb). Computers can really handle tons of data really fast; we've just become too accustomed to inefficiencies everywhere.
Re: WebR – R in the Browser
#7However: Aside from the above, and doing it "because one can", I don't understand why anyone would spend the effort to make this. R is FOSS software, if you can run a web browser, you can run R itself. R is not hard to install or maintain. Running in a web browser requires network, and resources on someone else's machine.
So, I am a strange combination of impressed with this site and confounded trying to figure out why it exists. I'm probably missing something.
Re: WebR – R in the Browser
#8Re: WebR – R in the Browser
#9Impressive how nice this looks, and I am also impressed by how quickly it runs. I don't know who did this (could not find any "about" info), but kudos on a job well done. However: Aside from the above, and doing it "because one can", I don't understand why anyone would spend the effort to make this. R is FOSS software, if you can run a web browser, you can run R itself. R is not hard to install or maintain. Running i…
On HN, it seems trivial to install software, but for most people it is not.
Also, tablet and Chromebook users.
Re: WebR – R in the Browser
#10This is an awesome project. We recently used it to build a statically hosted EC2 instance comparison website, using this for plotting (ggplot2) and DuckDB-Wasm for querying the instance data. Only the first page load is slow b/c of all the wasm and R packages, but it's fast for interactive querying and plotting and was really easy to create.