1. The Big Idea
A dataset is more than a table. After we choose features, each row becomes a point in a feature space. Many rows become a data cloud.
Main message: Data becomes geometry. Linear algebra gives us tools for studying the shape of that geometry.
Object
One student, house, song, image, document, or customer.
Vector
A numerical description of one object.
Dataset
Many vectors collected together.
Cloud
The geometric picture made by all points.
2. Rows, Columns, and the Data Matrix
In many data science settings, rows are objects and columns are features.
| Student | Hours | Sleep | Score |
| A | 2 | 7 | 70 |
| B | 5 | 6 | 85 |
| C | 1 | 8 | 65 |
| D | 7 | 5 | 92 |
X = [[2, 7, 70], [5, 6, 85], [1, 8, 65], [7, 5, 92]]