R Tip: Break up Function Nesting for Legibility
Win-Vector Blog 2018-03-21
Summary:
There are a number of easy ways to avoid illegible code nesting problems in R. In this R tip we will expand upon the above statement with a simple example. At some point it becomes illegible and undesirable to compose operations by nesting them, such as in the following code. head(mtcars[with(mtcars, cyl == 8), c("mpg", … Continue reading R Tip: Break up Function Nesting for Legibility