Learn SAS Programming
Learn SAS Programming
______________________________________________________________________________
____
Displaying the Graphs (Bar charts) using PROC GCHART in SAS
Displaying the Graphs (Bar charts) using PROC GCHART in SAS :Just a day ago, I have
received a question on Graphs in my orkut community, which prompted me to create following
examples.Below are 5 different types of Graphs were produced (including 3d graphs) using Proc
Gchart.
______________________________________________________________________________
______
Calculating group totals and the counts within each group
Sample 25217: Calculating group totals and the counts within each group This example uses the
SUM() function to sum the AMOUNT column, creating a new column named GRPTOTAL with
a COMMA10. format. The COUNT() function counts the number of occurrences of STATE
within each group. The GROUP BY clause collapses multiple rows for each group into one row
per group, containing STATE, GRPTOTAL and the COUNT.
Question:I have a huge SAS program that isn't working. The results I get are not right but there
are no errors or warnings in the SAS log. How can I figure out where I went wrong?
Read more at: http://studysas.blogspot.com/2008/11/how-to-debug-sas-code.html