From 5fa3d2f886f4c63c7a65d415d39fc1039fe4b194 Mon Sep 17 00:00:00 2001 From: Daniel Chimeno Date: Fri, 18 Mar 2016 09:22:59 +0100 Subject: [PATCH] [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. --- docs/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 94de432..d552e21 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -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. :: - >>> d.headers + >>> data.headers ['Last Name', 'First Name', 'Age'] - >>> d.get_col(1) + >>> data.get_col(1) ['Kenneth', 'Bessie'] Let's find the average age. ::