// set up a plotting area using proc areadef #proc areadef rectangle: 1 1 2.5 1.7 xrange: 0 9 yrange: 0 100 // do Y axis using proc yaxis #proc yaxis tics: none axisline: none ticincrement: 20 grid: yes // specify the data to be plotted using proc getdata // rotate is used so that data may all be on one line, // even though proc bars expects one value per line #proc getdata data: 65 76 98 87 61 72 78 84 rotate: yes // render the bars using proc bars #proc bars lenfield: 1 color: orange