Hello, I have one categorical with 5 values: 1, 2, 3, 4, 5. The data is 50 observations. I'd like to create pie chart showing in frequency by using proc schart as follow: proc gchart data=softdrink_new; format X X_value_label.; pie X / sumvar=X ; run; But the result of pie chart show the number which are not frequency of each category and label only on piece of the pie chart. How can I correct this problem? Moreover, how to show the number in percentage in separate and the same pie chart? Thank You
... View more