diff --git a/doc/source/getting_started/intro_tutorials/01_table_oriented.rst b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst
index 7e86ad6c499d9..22b381e0cee88 100644
--- a/doc/source/getting_started/intro_tutorials/01_table_oriented.rst
+++ b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst
@@ -36,6 +36,13 @@ pandas data table representation
-
+.. note::
+
+ The diagram shows that each row has an **index label** (0, 1, 2, ...),
+ and each column has a **column label** (Name, Age).
+ A single column of a DataFrame is a Series, which also has row labels.
+ More about indexes can be found in the
+ `indexing guide `_.
I want to store passenger data of the Titanic. For a number of passengers, I know the name (characters), age (integers) and sex (male/female) data.