Importing Python and R
Before we use Python and R functions in our Julia programs, we need to import and set up the correct packages. For Python, we use the PythonCall package, and for R we use the RCall package.
Both these packages contain functions that allow us to call other packages. In PythonCall, we use pyimport to import a package, and in RCall we use @rimport.
Set up your environment in these exercises to handle both Python and R imports. Note that the packages have already been installed for you on the local environment.
Bài tập này là một phần của khóa học
Intermediate Julia
Bài tập tương tác thực hành trực tiếp
Hãy thử làm bài tập này bằng cách hoàn thành đoạn mã mẫu này.
# Import PythonCall
using ____
# Import math using PythonCall
____ ____