Summary and Schedule
The best way to learn how to program is to do something useful, so this introduction to Julia is built around a common scientific task: data analysis.
Our real goal isn’t to teach you Julia, but to teach you the fundamental concepts that all programming depends on. We use Julia in our lessons because:
- we have to use something for examples;
- it’s free, open-source, and designed for high-performance computing;
- it is increasingly popular in scientific computing and data analysis; and
- it has a growing ecosystem of external packages for diverse tasks.
But the two most important things are to use whatever language your colleagues are using, so you can share your work with them easily, and to use that language well.
We are studying inflammation in patients who have been given a new treatment for arthritis, and need to analyze the first dozen data sets of their daily inflammation. The data sets are stored in CSV format (comma-separated values): each row holds information for a single patient, and the columns represent successive days. The first few rows of our first file look like this:
0,0,1,3,1,2,4,7,8,3,3,3,10,5,7,4,7,7,12,18,6,13,11,11,7,7,4,6,8,8,4,4,5,7,3,4,2,3,0,0
0,1,2,1,2,1,3,2,2,6,10,11,5,9,4,4,7,16,8,6,18,4,12,5,12,7,11,5,11,3,3,5,4,4,5,5,1,1,0,1
0,1,1,3,3,2,6,2,5,9,5,7,4,5,4,15,5,11,9,10,19,14,12,17,7,12,11,7,4,2,10,5,4,2,2,3,2,2,1,1
0,0,2,0,4,2,2,1,6,7,10,7,9,13,8,8,15,10,10,7,17,4,4,7,6,15,6,4,9,11,3,5,6,3,3,4,2,3,2,1
0,1,1,3,3,1,3,5,2,4,4,7,6,5,3,10,8,10,6,17,9,14,9,7,13,9,12,6,7,7,9,6,3,2,2,4,2,0,1,1
We want to:
- Calculate the average inflammation per day across all patients.
- Plot the result to discuss and share with colleagues.
To do all that, we’ll have to learn a little bit about programming.
Prerequisites
You need to understand the concepts of files and directories and how to start a Julia interpreter before tackling this lesson. This lesson sometimes references Jupyter Notebook although you can use any Julia interpreter mentioned in the Setup.
| Setup Instructions | Download files required for the lesson | |
| Duration: 00h 00m | 1. Julia Fundamentals |
What basic data types can I work with in Julia? How can I create a new variable in Julia? How do I use a function? Can I change the value associated with a variable after I create it? |
| Duration: 00h 12m | 2. Analyzing Patient Data | How can I process tabular data files in Julia? |
| Duration: 01h 12m | 3. Visualizing Tabular Data | |
| Duration: 02h 02m | 4. Storing Multiple Values in Vectors | |
| Duration: 02h 32m | 5. Automating Repetition with Loops | How can I do the same operations on many different values? |
| Duration: 03h 02m | 6. Analyzing Multiple Files | How can I apply the same operations to many different files? |
| Duration: 03h 22m | 7. If/Else - Conditional Statements in Julia | |
| Duration: 04h 12m | 8. Creating Functions |
How can I define new functions? What’s the difference between defining and calling a function? What happens when I call a function? |
| Duration: 05h 02m | 9. Handling errors |
How does Julia report errors? How can I handle errors? |
| Duration: 05h 32m | 10. Writing Tests | |
| Duration: 05h 52m | 11. Debugging | How can I debug my program? |
| Duration: 06h 12m | 12. Course Conclusion | |
| Duration: 06h 14m | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.
Overview
This lesson is designed to be run on a personal computer. All of the software and data used in this lesson are freely available online, and instructions on how to obtain them are provided below.
Install Julia
To get started, download and install Julia for your operating system.
Launch Julia
To start programming in Julia, choose one of the following options:
Option A: Jupyter Notebook
Open a terminal (or Command Prompt on Windows).
-
Open Julia(Type
juliaand press Enter) in your terminal and type: A browser window will open. Click New → Julia to start coding.
Download
You also need to download some files to follow this lesson:
- Download juliainflammation-data.zip.
- Create a folder called
julia-novice-inflammationon your Desktop. - Move downloaded files to
julia-novice-inflammation. - Unzip the files.