The data frame (`data.frame`) is the fundamental data structure in R for storing tabular data. It is a list of vectors of equal length, where each vector represents a column and can be of a different data type (e.g., numeric, character, factor). This structure is ubiquitous in R for statistical modeling and data manipulation, mirroring the rectangular format of datasets.
