BookmarkSubscribeRSS Feed
Ken_oy
Fluorite | Level 6
Hi, everyone,

Need help, a very weird problem.
I haven't had this problem before, my SAS running OK before.

But this morning when I using a Proc Gplot, I got the following message:
"WARNING: The left vertical axis labeled Sum could not be fit as specified. The axis values will overwrite."

And the graph SAS gave was too large!

I also tried a Proc univariate to create a histogram, this time, graph cannot be created.
and:
"WARNING: Insufficient space on page to create a chart."


I also try to using "goption reset=all" but no luck

Any help??

Thanks!!

Ken
3 REPLIES 3
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Share you code. It will help with getting useful feedback.

Scott Barry
SBBWorks, Inc.
Ken_oy
Fluorite | Level 6
I am just running in default. no other additional option.


"
data test;
set source.data;
run;

proc univariate data=test;
var v1;
histogram v1;
run;
"

or

"
proc gplot data=test;
plot v1*v2;
run;
"


Everything is OK days before. But I really don't know why my SAS has this graphic problem. I also want to paste a pic, but don't know how for this website...

Thanks for your help!
ChrisNZ
Tourmaline | Level 20
Weird.
Try playing with the number of records:

proc gplot data=test(obs=100);
plot v1*v2;
run;

to see whether:
1- a specific record throws sas off
2- the volume of data plays a role

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 957 views
  • 0 likes
  • 3 in conversation