* @param type the note attribute to be displayed, 0 = pitch etc.
* @param xPos the horizonal position for the window to be displayed
* @param yPos the vertical position for the window to be displayed
*/
public static void histogram(Score score, int dataType, int xPos, int yPos) {
new HistogramFrame(score, dataType, xPos, yPos);
/**
Histogram h = new Histogram(score, dataType, xPos, yPos);
Frame f = new Frame(h.getTitle());
f.setLocation(h.getXPos(), h.getYPos());
f.setSize(400, 127 * 4 + 50);