November 2017
Beginner
316 pages
6h 40m
English
Let's walk through a practical example, wherein we will talk more about how functions can prove to be helpful in the real world when using Julia. We all, at some point in our software development careers, must have worked with CSV files. For those who haven't, there's nothing to worry about--CSV indicates a file format wherein the data is comma (,) separated.
Just imagine that we have a CSV file with the name sample.csv in our home location, and this file contains the day and night temperature values (in degrees Celsius) of a town in the summer for seven continuous days of a random week.
Here is the actual file:
mac-rahul:~$ cat sample.csv"43.4","32.0""44.6","31.4""40.1","27.6""41.1","28.9""44.0","30.0" ...
Read now
Unlock full access