From e74a8f41cc0bdfe1cb9aae90b9240fd15208e9cb Mon Sep 17 00:00:00 2001 From: Mark Walling Date: Mon, 11 Jul 2011 17:13:47 -0400 Subject: Created get_col method with tests and tutorial.rst update Useful when you have multiple columns with the same header --- docs/tutorial.rst | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs/tutorial.rst') diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 561b24c..117196d 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -146,6 +146,13 @@ To do so, we access the :class:`Dataset` as if it were a standard Python diction >>> data['First Name'] ['Kenneth', 'Bessie'] +You can also access the column using its index. :: + + >>> d.headers + ['Last Name', 'First Name', 'Age'] + >>> d.get_col(1) + ['Kenneth', 'Bessie'] + Let's find the average age. :: >>> ages = data['Age'] -- cgit v1.2.1