R Tip: Force Named Arguments
Win-Vector Blog 2018-02-22
Summary:
R tip: force the use of named arguments when designing function signatures. R’s named function argument binding is a great aid in writing correct programs. It is a good idea, if practical, to force optional arguments to only be usable by name. To do this declare the additional arguments after “...” and enforce that none … Continue reading R Tip: Force Named Arguments