Question: Consider the built in data set called demographics (DATA = sashelp.demographics) and the variable called region. Suppose you want to make a horizontal bar chart.
Consider the built in data set called demographics (DATA = sashelp.demographics) and the variable called "region". Suppose you want to make a horizontal bar chart. This can be done with PROC SGPLOT and the HBAR statement.
PROC SGPLOT DATA=sashelp.demographics; HBAR region; RUN;
The syntax for using the PROC SGPLOT statement is given here:
Syntax PROC SGPLOT ;
One of the optional arguments is:
NOBORDER which turns off the display of the graph wall border.
Give the PROC SGPLOT statement including (DATA=sashelp.demographics as above) that would implement this option for the created plot. (For the sake of auto-grading, place no extra spaces anywhere in the statement you submit.)
Please tell me what the whole statement is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
