Most dynamic languages allow users to turn text into code using various functions, often named eval
, with language-dependent semantics. The widespread use of these reflective functions hinders static analysis and prevents compilers from performing optimizations. This paper aims to provide a better sense of why programmers use eval
. Understanding why eval
is used in practice is key to finding ways to mitigate its negative impact. We have reasons to believe that reflective feature usage is language and application domain-specific; we focus on data science code written in R and compare our results to previous work that analyzed web programming in JavaScript. This paper studied 240,327 scripts extracted from 15,401 R packages, for a total of 49,296,059 calls to eval
. We find that eval
is indeed in widespread use; R’s eval
is more pervasive and arguably dangerous than what was previously reported for JavaScript.