Closed aguang closed 5 years ago
Linking to openjournals/joss-reviews#1284
The difference is already documented. However, when I look at it again, the wording is not that clear. And other users have also asked me questions about these functions. So I think I need to improve the documentation and make it more clear. Thanks for the suggestion.
Documentation about these functions has been improved, and it can be retrieved by ?julia_eval
and ?julia_command
.
Looks good to me. Thanks!
Would you be able to document somewhere the difference between
julia_call
,julia_eval
, andjulia_command
? In particular the difference between these functions in returning a value to R and returning a value to Julia.It took me a while to understand that
julia_command
does not return a value to R, but will display return values from Julia (ifshow_value=TRUE
) whilejulia_eval
will not display return values from Julia but will return a value to R (ifneed_return %in% c("R","Julia")
) whilejulia_call
can do either/both.