Table of Contents
ToggleData is a collection of information. A key goal of Data Science is to structure data, making it interpretable and easy to work with.
| ID | Name | Value |
|---|---|---|
| 1 | John | 80 |
| 2 | Jane | 85 |
| 3 | Doe | 90 |
We can structure data using arrays or database tables. For example:
Array = [80, 85, 90, 95, 100, 105, 110, 115, 120, 125]
print(Array)
Data Science often deals with large datasets. However, in this tutorial, we will use small datasets for simplicity and better understanding.
