How do you sort a list of lists by the count of the first element? For example, if I had the following list below, I'd want the list to be sorted so that all the 'University of Georgia' entries come first, then the 'University of Michigan' entries, and then the 'University of Florida' entry.
l = [['University of Michigan','James Jones','phd'],
['University of Georgia','Anne Greene','ba'],
['University of Michigan','Frank Kimball','ma'],
['University of Florida','Nate Franklin','ms'],
['University of Georgia','Sara Dean','ms'],
['University of Georgia','Beth Johnson','bs']]