eval(substitute()) within a R6 object
Summary The issue at hand is using eval(substitute()) within an R6 object to evaluate an expression. The problem arises when trying to use basic operators like ==, +, etc., which are not defined within the object’s environment. This leads to errors, as seen in the example provided. Root Cause The root cause of this issue … Read more