Reading assignment: SAS textbook, Chapter 2

In pie charts, other options include: value = inside causes the frequency count to be placed inside the pie slice; percent = inside causes the percent to be placed inside the pie slice; slice = outside causes the label to be placed outside the pie slice. SAS Syntax: PROC FREQ DATA=dataname; TABLES var1 var2 … vari; RUN; PROC GCHART DATA=dataname; ................
................