This document discusses R data types and objects. It covers the basic data types in R: logical, integer, real/double, string/character, complex, and raw. The most common data structures are vectors, matrices, arrays, data frames, and lists. Vectors can be atomic, containing one data type, or generic lists, containing multiple data types. The document demonstrates how to create vectors using the c() function or colon operator, and how to name vectors by assigning them to an object. It also discusses the basic properties of vectors like their type, length, dimensions, and classes.