Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

simple ? graphing q.

Status
Not open for further replies.

sasjoe2007

Programmer
Dec 30, 2007
1
US
Hello -

I am trying to produce a scatterplot where the right and upper axes are not drawn. (all values are positive) However, I would like to keep the lower and the left axes.

Right now I'm getting a square containing the points inside. I'd like to just have the "L" part of the square.

so,

|
| *
| *
| *
|___________


not
__________
| |
| * |
| * |
| * |
|_________|

I can't seem to find documentation!

Does anyone have any ideas on this?

Thanks a lot,

Charles
 
no problem...use the noframe option on the plot statement...

Code:
proc gplot data=yourdata;
    plot y * x / NOFRAME;
quit;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top