I am in a odd ball situation where I have a numpy array like the following:
>>> scores
array([
(18.0, 'bill'), (23.0, 'sarah'), (12.0, 'stacy'),
(71.0, 'joe'), (54.0, 'adam'), (87.0, 'kat'),
(46.0, 'le'), (87.0, 'dave'), (89.0, 'kara')])
I am trying to create a bar graph with the above array based on the touple's [0] value (score) in y axis, and touple's [1] value (name) in the x axis. Being able to sort the score is from highest to lowest would be a great plus....I am stuck and really don't know how to proceed with this. Any help/guidance is highly appreciated!