You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it seems like there might be a bug when using @mutate to create a new variable as the log of another one. Below is a simple example for such a case, and the error it produces in the latest release v0.16.5.
using TidierData
df =DataFrame(a ='a':'e', b =1.0:5.0);
df =@chain df begin@mutate(log_b =log(b))
end# Error it produces:
ERROR: MethodError: objects of type Base.RefValue{Bool} are not callable
The object of type `Base.RefValue{Bool}` exists, but no method is defined for this combination of argument types when trying to treat it as a callable object.
The text was updated successfully, but these errors were encountered:
Hi, it seems like there might be a bug when using
@mutate
to create a new variable as the log of another one. Below is a simple example for such a case, and the error it produces in the latest releasev0.16.5
.The text was updated successfully, but these errors were encountered: