Notes from the Kölner R meeting, 9 July 2016

Last Thursday the Cologne R user group came together again. This time, our two speakers arrived from Bavaria, to talk about Spark and R Server.

Introduction to Apache Spark

Download slides
Dubravko Dulic gave an introduction to Apache Spark and why Spark might be of interest to data scientists using R. Spark is designed for cluster computing, i.e. to distribute jobs across several computers. Not all tasks in R can be split easily across several nodes in a cluster, but if you use functions like by in R, then it is most likely doable. The by function in R splits a data set into several subsets and applies a specific function to each subgroup and collects the results in the end. In the world of Hadoop, this is called MapReduce. Spark has an advanced DAG (directed acyclic graph) execution engine that supports cyclic data flow and in-memory computing. Additionally, Spark has a direct API for R, which makes it relatively ease to write applications with Spark.

Microsoft R Server

Download slides
Since the acquisition of Revolution Analytics in 2015, Microsoft has been busy integrating R into its product offerings. Stefan Cronjaeger gave an overview of how R can be integrated into a production environment. Microsoft R server aims to solve the problem of doing ‘big data’ analytics with R, which allows to carrying out in-memory and disk-based data analysis. Additional new tools are called ScaleR for big data and parallelized analytics, ConnectR to connect to various other data sources, DistributedR for grid computing. Finally, Stefan showed us how Visual Studio can be used as an R development environment, similar to RStudio.

Next Kölner R meeting

The next meeting will be scheduled in about three months time. Details will be published on our Meetup site. Thanks again to Microsoft for their support.

Please get in touch, if you would like to present at the next meeting.

Citation

For attribution, please cite this work as:

Markus Gesmann (Jul 13, 2016) Notes from the Kölner R meeting, 9 July 2016. Retrieved from https://magesblog.com/post/2016-07-13-notes-from-kolner-r-meeting-9-july-2016/

BibTeX citation:

@misc{ 2016-notes-from-the-kolner-r-meeting-9-july-2016,
 author = { Markus Gesmann },
 title = { Notes from the Kölner R meeting, 9 July 2016 },
 url = { https://magesblog.com/post/2016-07-13-notes-from-kolner-r-meeting-9-july-2016/ },
 year = { 2016 }
 updated = { Jul 13, 2016 }
}

Related