s = {{"H", 1058}, {"L", 10}, {"M", 1}, {"N", 30}, {"P", 41}, {"Q",
141}, {"R", 107}, {"S", 86}, {"T", 155}, {"V", 588}, {"W",
489}, {"(Y)", 177}, {"Y", 66}, {"Z", 70}};
I have a bunch of data as shown above and I want to create a Histogram showing how common a given element is. Basically, the 2nd element in each sublist defines the height of the "histogram bin" this element belongs in.
Is there a way, other than constructing my own rectangles, to do this? Using Histogram is preferred. Historgram
obviously doesn't work.