R Gets Notebooks & TensorFlow
Tuesday, 11 October 2016

It seems that most languages need a notebook format and now R has its very own and a new connection to TensorFlow. What more could an up and coming language require to be fully modern?

 

Rlogo

Given that R is used at lot of the time, perhaps all of the time, for off-the-cuff, scratchpad-style, statistical analysis, what could be more fitting than using it via a notebook style IDE. 

 

Rnote

 

If you have missed the idea of the notebook, it allows the free mixing of code, its output and annotation. You can create a notebook page that looks like a presentation or a lesson and this is the main use of the idea. Notebooks are familiar if you use Mathematica or Maple. Then there is the iPython notebook, recently developed into Jupyter, which supports Python and a number of other languages including R.

R Notebooks, however, have some advantages over Jupyter. In particular they integrate with R Studio which is a common IDE for R. You can view a Notebook in R Studio  In addition R Notebooks feature batch execution reather than interactively a cell at a time. The Notebook format uses R Markdown and can display almost any output that R produces including console output, plots, data frames and HTML widgets. In addition you can run code written in other languages including Python, Bash, SQL or C++.

You can see R Notebooks in action in the following video:

 

TensorFlow is Google's general purpose number crunching system using data flow graphs that makes implementening neural networks easier. R already has some packages that do neural networks but, if you have tried them out you will discover that they are fine as far as they go but they have an "unfinished" feel to them and there is no general purpose R neural network package. This leaves R a bit behind the times as far as neural network machine learning is concerned. 

 

tensorflow1

 

Now we have TensorFlow for R, an open source library that allows R to make use of TensorFlow via its Python bindings. TensorFlow itself is written in C/C++ and to use it via Python via R is a little bit indirect, but this shouldn't really impact performance as once the flowgraphs are constructed TensorFlow gets on with the calculation irrespective of what was used to set things up. 

The advantage of using TensorFlow from R is that you can use R to clean up the data and generally explore it before trying out complicated neural networks on it. If you are familiar with R you will still have to learn how to setup a data flowgraph for TensorFlow to do your calculation, but at least you will know how to manipulate the data. 

To make use of it you need to install TensorFlow and the R package. You also almost certainly want to install RStudio because this has code completion and online help for TensorFlow. 

 

Rlogo

 

More Information

https://blog.rstudio.org/2016/10/05/r-notebooks/

https://github.com/rstudio/tensorflow

https://rstudio.github.io/tensorflow/

Related Articles

R Heads For Top Ten Languages

R 3.0 - the Masked Marvel

A Programmer's guide to R - Data and Objects

TensorFlow Course On Kadenze 

TPU Is Google's Seven Year Lead In AI 

TensorFlow 0.8 Can Use Distributed Computing

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on, Twitter, FacebookGoogle+ or Linkedin

 

Banner


Couchbase's Coding Assistant Goes GA
11/03/2024

Capella iQ, the AI coding assistant for developers that makes interacting with Couchbase using natural language possible, has gone from private beta to being generally available.



Open Source Key To Expansion of IoT & Edge
13/03/2024

According to the 2023 Eclipse IoT & Edge Commercial Adoption Survey Report, last year saw a surge of IoT adoption among commercial organizations across a wide range of industries. Open source [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Tuesday, 11 October 2016 )