vix.ing · top · new · best · stats · spec

On the design, implementation, and use of laziness in R

2019/09/19 by Aviral Goel, Jan Vitek · 2 voices · 1 citation
Decision Sciences · Computer Science · Social Sciences · #Scientific Computing and Data Management #Data Analysis with R #Computational and Text Analysis Methods

paper · pdf · doi:10.1145/3360579

Abstract

The R programming language has been lazy for over twenty-five years. This paper presents a review of the design and implementation of call-by-need in R, and a data-driven study of how generations of programmers have put laziness to use in their code. We analyze 16,707 packages and observe the creation of 270.9 B promises. Our data suggests that there is little supporting evidence to assert that programmers use laziness to avoid unnecessary computation or to operate over infinite data structures. For the most part R code appears to have been written without reliance on, and in many cases even knowledge of, delayed argument evaluation. The only significant exception is a small number of packages which leverage call-by-need for meta-programming.

Cited by

Discussions

Related