[docs] Update variable name in tuto

The tutorial has been using the 'data' variable, but in this case it's using 'd'.
This change that.
This commit is contained in:
Daniel Chimeno
2016-03-18 09:22:59 +01:00
parent d4c66c7a4e
commit 5fa3d2f886
+2 -2
View File
@@ -158,9 +158,9 @@ To do so, we access the :class:`Dataset` as if it were a standard Python diction
You can also access the column using its index. :: You can also access the column using its index. ::
>>> d.headers >>> data.headers
['Last Name', 'First Name', 'Age'] ['Last Name', 'First Name', 'Age']
>>> d.get_col(1) >>> data.get_col(1)
['Kenneth', 'Bessie'] ['Kenneth', 'Bessie']
Let's find the average age. :: Let's find the average age. ::