# Possibly heterogeneous (values can be of different types)
typeof((2, 'a', 1.0, "test"))Tuple{Int64, Char, Float64, String}
Marie-Hélène Burle
Values can be stored in collections. This workshop introduces tuples, dictionaries, sets, and arrays in Julia.
Tuples are immutable, indexable, and possibly heterogeneous collections of elements. The order of elements matters.
Tuple{Int64, Char, Float64, String}
MethodError: no method matching setindex!(::Tuple{Int64, Char, Float64, String}, ::Int64, ::Int64)
The function `setindex!` exists, but no method is defined for this combination of argument types.
Stacktrace:
[1] top-level scope
@ ~/parvus/prog/mint/julia/intro_collections.qmd:32
Tuples can have named components:
Julia also has dictionaries: associative collections of key/value pairs:
Dict{String, Any} with 3 entries:
"Index" => 0.3
"Age" => 52
"Name" => "Roger"
"Name", "Age", and "Index" are the keys; "Roger", 52, and 0.3 are the values.
The => operator is the same as the Pair function:
Dictionaries can be heterogeneous (as in this example) and the order doesn’t matter. They are also indexable:
And mutable (they can be modified):
Sets are collections without duplicates. The order of elements doesn’t matter.
Notice how this is a set of 5 (and not 6) elements: the duplicated 8 didn’t matter.
You can compare sets:
Set{Int64} with 7 elements:
4
7
2
10
9
8
3
Set{Int64} with 1 element:
2
Set{Int64} with 4 elements:
4
7
9
8
Sets can be heterogeneous:
Unidimensional arrays in Julia are called vectors.
These 3 syntaxes are equivalent:
These 4 syntaxes are equivalent:
Elements separated by semi-colons or end of lines get expanded vertically.
Those separated by commas do not get expanded.
Elements separated by spaces or tabs get expanded horizontally.
Your turn:
Compare the outputs of the following:
In Julia, arrays can be heterogeneous:
This is possible because all elements of an array, no matter of what types, will always sit below the Any type in the type hierarchy.
Below are examples of some of the functions initializing arrays:
2×3×4 Array{Float64, 3}:
[:, :, 1] =
0.993828 0.882674 0.156826
0.0488372 0.384544 0.38646
[:, :, 2] =
0.947572 0.211583 0.245329
0.200717 0.0671244 0.11207
[:, :, 3] =
0.920057 0.535439 0.758574
0.633244 0.701944 0.922863
[:, :, 4] =
0.0622371 0.996037 0.495487
0.623987 0.402097 0.226669
2×3×4 Array{Int64, 3}:
[:, :, 1] =
-1659704258553532985 5092626041193358980 -6744239143480713967
5676627516220431085 859766954670435512 2040841354476197273
[:, :, 2] =
-8675906160027700335 -6349630634794011755 -735734371108161759
138637581457749019 -3183745125470321952 8635673206110177569
[:, :, 3] =
-26801811691569741 7032665316102188392 372415012557512763
8384772822022222227 -8182155477413591973 7840102709525219400
[:, :, 4] =
7791255455207374125 1527910740453680593 -8625969480346811118
-2584660519127820262 4492350654429620582 -3802575830933417107
To apply a function to each element of a collection rather than to the collection as a whole, Julia uses broadcasting.
LoadError: MethodError: no method matching abs(::Vector{Int64})
This doesn’t work because the function abs only applies to single elements.
By broadcasting abs, you apply it to each element of a:
The dot notation is equivalent:
It can also be applied to the pipe, to unary and binary operators, etc.
Your turn:
Try to understand the difference between the following 2 expressions:
Hint: 0/1 are a short-form notations for false/true in arrays of Booleans.
Julia has an array comprehension syntax similar to Python’s:
As in other mathematically oriented languages such as R, Julia starts indexing at 1.
Indexing is done with square brackets:
Your turn:
Index the element on the 3rd row and 2nd column of b:
Your turn:
How can I get the second column?
How can I get the tuple (2, 4)? (a tuple is a list of elements)
As in Python, by default, arrays are passed by sharing:
This prevents the unwanted copying of arrays.