January 2023
Beginner to intermediate
472 pages
13h 21m
English
This chapter covers
In chapters 2 and 3, you learned basic elements of the Julia language. We have mostly used scalar types (like numbers) in all the examples. However, in data science, you will typically work with data collections, groupings of a variable number of data items. One collection type already introduced in chapter 2 is a vector.
In this chapter, you will learn how to use several fundamental collections that are most used in practical scenarios: arrays, dictionaries, tuples, and named tuples.
In this section, you will learn the basics of working ...