{ "metadata": { "name": "", "signature": "sha256:f56b7081a6e5b63610100fcfa0a226c7a0184dfe0d63128614a7a68555653428" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "[Sebastian Raschka](http://sebastianraschka.com) \n", "last updated: 05/13/2014\n", "\n", "- Open in [IPython nbviewer](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/sorting_csvs.ipynb?create=1) \n", "- Link to this [IPython notebook on Github](https://github.com/rasbt/python_reference/blob/master/tutorials/sorting_csvs.ipynb) \n", "- Link to the GitHub Repository [`python_reference`](https://github.com/rasbt/python_reference)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
name,column1,column2,column3\n", "abc,1.1,4.2,1.2\n", "def,2.1,1.4,5.2\n", "ghi,1.5,1.2,2.1\n", "jkl,1.8,1.1,4.2\n", "mno,9.4,6.6,6.2\n", "pqr,1.4,8.3,8.4\n", "\n", "And we want to sort particular columns and eventually mark min- of max-values in the table.\n", "