Quiz:
Creating
Plots
Select the best answer for each question and click Score My Quiz.
-
Which SAS statement below invokes
a SAS/GRAPH procedure to produce a plot using a SAS data set named
Year3 in a SAS data library assigned the libref Stats?
-
Select the statement below that
produces a single plot with the values of
SysBP on the
vertical axis and Month on the horizontal axis. The vertical
axis should be ordered from 40 to 240 by 20, and the horizontal axis
should display only JAN, APRIL, JULY, and
OCT.
-
Select the statement below that
produces two plots on a single pair of axes. The variables
Sales
and Rentals should be plotted against Year ,
and the vertical axis should be ordered from 0 to 10000 by 10.
-
One statement in the following
program contains an error. Which statement is it?
symbol1 v=none i=needle w=2 c=black;
proc gplot data=crimes.misdemeanor;
plot robbery*month;
where robbery is 300;
run;
-
Which of the following INTERPOL=
option values displays a smoothed line connecting the points on a
plot?
-
Assume that the current color
list for your device consists of five colors. Select the description
of the plot line for
DiasBP that would result from the
program below.
symbol1 interpol=spline value=square width=2;
symbol2 interpol=join value=triangle width=1.5;
proc gplot data=clinic.admit;
plot sysbp*week diasbp*week / overlay;
run;
-
If you had originally submitted
the following statement, select the statement you would use to change
only the plotting symbol for the first plot line in subsequent plots.
symbol1 interpol=spline color=blue width=2 value=star;
-
If you are using RUN-group processing
in interactive mode, which of the following methods would NOT end
the PROC PLOT procedure?
-
Assume that the libref Shoes
has already been assigned. Which statement stores the plot in a permanent
catalog referenced with the libref Shoes?
-
To view a permanently stored
graph in a subsequent SAS session, which of the following windows
can you use?
|