Julia

Create basic Julia Assignment

create course

Create an assignment

  • Click on connect on the course.

  • Click on formgrader tab on menubar. It will open a new page on new tab.

  • Create one assignment and click on the link mentioned in the Name (first column).

Tip

You can download basic julia assignment file with following link.
Download Julia.ipynb file

  • You can upload it by clicking on upload button right side of the jupyter notebook, select the file already downloaded and click on upload button.
  • Uploaded file is a assignments. you'll see assn-julia in file section. You can open it by clicking on it.
  • To verify this assignment is working correctly, You can click on validate button that you can find in the tool bar.
  • Congratulations! ✨ 🔥 👏

How to install and use julia library?

  • To install any julia package, Add new cell with following lines.
using Pkg
Pkg.add("DataFrames")
  • You can click on run button on toolbar.

Julia package install