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
Fixes the name of the extensions so they don't clash elsewhere. Also adds an RCall one which is basic and assumes out of place, which is a fine assumption given that R is copy-on-write and thus mutation of the form of an in-place function is just not possible. This means that we don't get the great error messages, but oh well we can figure that out later.
FixesSciML/diffeqr#41
Better version requires JuliaInterop/RCall.jl#503
julia> f =R"function(a,b=2) a+b"
RObject{ClosSxp}
function (a, b =2)
a + b
julia>R"formals"(f)
RObject{ListSxp}
$a
$b
[1] 2
julia>length(R"formals"(f))
2
If I have an RFunction from R, is there a way to know how many arguments it expects?
The text was updated successfully, but these errors were encountered: