BookmarkSubscribeRSS Feed
Chetan302
Calcite | Level 5

I have scatter series plot using proc SGPLOT with different timepoints on each page.
Page having 5 timepoints on x axis have required gap between errorbars of two treatments with clusterwidth = 0.2 but other page having 8 timepoints have comparatively small gap between errorbars with same clusterwidth value.
Upon increasing clusterwidth value, I am getting required gap but along with gap, thickness of errobars also increased. I want to change only the gap without changing thickness. I have tried  errorbarattrs = (thickness = x) with and without transparence = x option but with use of these options clusterwidth = n seems not working. 
Any solution will be most welcome.

2 REPLIES 2
ballardw
Super User

Complete Sgplot code please. Plus data if possible, or modify your code to use a supplied data set like one of the SGPLOT examples.

 

 

Chetan302
Calcite | Level 5

Here is the sample code:-

proc sgplot data= &data DATTRMAP=Attrs  ;
  by paramn parameter;
  where paramn = &i ;
   styleattrs  datacontrastcolors = (red blue) datalinepatterns = (solid dash )  datasymbols = (circle plus)  ;
  
scatter x=visn y=&ymean / group=TRT01p ATTRID=TRT01p yerrorlower=&ylower yerrorupper=&yupper groupdisplay=cluster clusterwidth=0.2 name="s1" ;
 
series x=visn y=&ymean / group=TRT01p ATTRID=TRT01p lineattrs=(thickness=1 ) name="s2"  ; 
 
  xaxistable _N / x=visn class=trt01p location=inside  colorgroup=trt01p ATTRID=trt01p separator ; 
 
xaxis values = (0,30,180,210,360) valuesdisplay = ("Baseline" "Day 30" "Day 180" "Day 210" "Day 360")  valueattrs=(size=8) fitpolicy = rotate label="Visit" offsetmin = 0.045 offsetmax = 0.045 type = linear; 
 
%if &i = 1 %then %do; 
scatter x=visn y=&ymean / group=TRT01p ATTRID=TRT01p yerrorlower=&ylower yerrorupper=&yupper groupdisplay=cluster clusterwidth=0.35 name="s1" ; 
 
 xaxis values = (0,14,30,90,180,210,270,360)   valuesdisplay = ("Baseline" "Day 14" "Day 30" "Day 90" "Day 180" "Day 210" "Day 270" "Day 360")  valueattrs=(size=8) fitpolicy = rotate  label="Visit" offsetmin = 0.045 offsetmax = 0.045 type = linear; 
%end;     
  run;   

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2 replies
  • 171 views
  • 1 like
  • 2 in conversation