<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS GRAHICS - how to create .eps file? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914956#M26478</link>
    <description>&lt;P&gt;For your purposes, you could change the BANDPLOTs from being FILLed to being OUTLINEd using the DISPLAY option. That way, all of the information can be seen.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2024 21:17:55 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2024-02-07T21:17:55Z</dc:date>
    <item>
      <title>ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914598#M26471</link>
      <description>&lt;P&gt;Hi Community,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regardless &lt;A href="https://communities.sas.com/t5/Graphics-Programming/How-to-get-a-file-figurename-EPS-with-ODS-GRAPHICS/td-p/100501" target="_self"&gt;some&lt;/A&gt; &lt;A href="https://communities.sas.com/t5/Graphics-Programming/EPS-output-from-sgplot/m-p/914584#M24297" target="_self"&gt;suggestions&lt;/A&gt; in the sas community and specifications in sas documentation, I couldn't find a way to create images in EPS format using ODS Graphics.&amp;nbsp;&lt;BR /&gt;Calling Community Experts for help and guidance. I cannot provide data for this problem, but attaching my code and log. Hope someone could help me out.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;BR /&gt;&lt;BR /&gt;My Code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close; 
ods graphics on; 
ods listing  /*image_dpi=600*/ gpath= "&amp;amp;mypath\EPS images";
	ods graphics / imagename="imagename" outputfmt=eps reset=index noborder;
	ods select survivalplot(persist);
	proc lifetest data=have method = km plots=survival(nocensor cb=hw  atrisk(outside(0.10)));
		time month*cnsr(1);
	 	strata actarm / order = internal ;
	run;
ods graphics off; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;log with ERROR:&lt;/P&gt;
&lt;PRE&gt;NOTE: The LOGLOG transform is used to compute the confidence limits for
      the quartiles of the survivor distribution and the confidence limit
      for the survivor function. To suppress using this transform, specify
      CONFTYPE=LINEAR in the PROC LIFETEST statement.
NOTE: The graph in the LISTING destination will be rendered as an image
      due to the use of transparency.
&lt;STRONG&gt;ERROR: Unsupported image file format for output file.
ERROR: Unsupported image file format for output file.&lt;/STRONG&gt;
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE LIFETEST used (Total process time):
      real time           0.26 seconds
      cpu time            0.06 seconds&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Feb 2024 23:23:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914598#M26471</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-05T23:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914752#M26472</link>
      <description>&lt;P&gt;I could send matrixplot (from proc corr) into EPS file. Please see below. Why Survival plot cannot be sent into EPS, does it produce an image with different format?&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on; 
ods _all_ close; 
ods listing  image_dpi=600 gpath= "&amp;amp;mypath\test";
ods graphics / imagename="classmatrix" outputfmt=eps reset=index noborder;
ods exclude all; 
ods select MatrixPlot; 
proc corr data =sashelp.class plots=matrix(histogram);
	var age height weight;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Result:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 892px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93313iABB9126F6FF9ED45/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;looping you in for awareness, as I think this question should be solved in a new thread&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 20:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914752#M26472</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-06T20:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914903#M26473</link>
      <description>&lt;P&gt;There is the reason the survival plot failed to produce an EPS file is because of this note in the log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;NOTE: The graph in the LISTING destination will be rendered as an image
      due to the use of transparency.&lt;/PRE&gt;
&lt;P&gt;Once it got turned into an image, it could not be put into a vector-based EPS file. It is possible for you to modify the graph template used by PROC LIFETEST to remove the DATATRANSPARENCY options in the definitions, as they might not be needed for your case. Let me know if you want to pursue that approach, and I can describe how to make that change.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 18:27:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914903#M26473</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-07T18:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914910#M26474</link>
      <description>&lt;P&gt;I like this approach and would like to know how to modify transparency in graphics template&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 19:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914910#M26474</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-07T19:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914927#M26475</link>
      <description>&lt;P&gt;Here are the steps:&lt;/P&gt;
&lt;P&gt;-- Run ODS PATH SHOW; to check your paths for template reading and writing. The default will look something like the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Current ODS PATH list is: 

1. SASUSER.TEMPLAT(UPDATE) 
2. SASHELP.TMPLMST(READ)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This would cause your changes to be written to SASUSER.TEMPLAT, which is permanent storage. That would mean that every time you ran PROC LIFETEST, it would pick up your changes, which is probably not desirable. I would recommend running the following statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path (prepend)work.templat(update);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which will make your template write and read from template store live only for the life of your session.&lt;/P&gt;
&lt;P&gt;-- Add ODS TRACE ON; to the top of your original program and re-run it. The log will tell you which template was used to produce the plot (let's pick stat.lifetest.graphics.productlimitsurvival for this example).&lt;/P&gt;
&lt;P&gt;-- Using the template name, run the following code. The proc will put the source to the template in the log, starting with "define statgraph" and ending with an "end;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
source stat.lifetest.graphics.productlimitsurvival;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;-- In a clean editor, create the following code block:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
&amp;lt; code from the log &amp;gt;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;-- In the code, look for all occurrences of the DATATRANSPARENCY option and remove them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-- Submit the code. You should see it write to WORK.TEMPLATE.&lt;/P&gt;
&lt;P&gt;-- Submit your original PROC LIFETEST code and see if you can generate an EPS file now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know how it goes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 19:40:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914927#M26475</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-07T19:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914953#M26477</link>
      <description>&lt;P&gt;Thank you so much,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;! &lt;BR /&gt;Your guidance was so useful, I've learnt something new and found &lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_lifetest_sect018.htm" target="_self"&gt;related&lt;/A&gt; &lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#templt_toc.htm" target="_self"&gt;documentation&lt;/A&gt; as well.&amp;nbsp;&lt;BR /&gt;Your codes created EPS file without transparency of shaded areas.. Please see below.&lt;BR /&gt;EPS file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="survivalplot without transparency.PNG" style="width: 529px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93356iEB36A5F0CA78AA1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="survivalplot without transparency.PNG" alt="survivalplot without transparency.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;Previously, this plot,&amp;nbsp;with transparency, looked like as below.&lt;BR /&gt;PNG file. (Same for EPSI file).&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="survivalplot with transparency.PNG" style="width: 646px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93357i6B469B158925EF51/image-size/large?v=v2&amp;amp;px=999" role="button" title="survivalplot with transparency.PNG" alt="survivalplot with transparency.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I've even tried changing original transparency levels (datatransparency=.55)&amp;nbsp; in the PROC TEMPLATE step, but it didn't produce EPS file causing the same error again. Looks like transparency needs to be completely off for EPS files.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 21:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914953#M26477</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-07T21:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914956#M26478</link>
      <description>&lt;P&gt;For your purposes, you could change the BANDPLOTs from being FILLed to being OUTLINEd using the DISPLAY option. That way, all of the information can be seen.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 21:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914956#M26478</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-07T21:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914967#M26479</link>
      <description>&lt;P&gt;Added &lt;STRONG&gt;DISPLAY=(OUTLINE)&lt;/STRONG&gt; option after each BANDPLOT and get this result.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc template;&lt;BR /&gt;define statgraph Stat.Lifetest.Graphics.ProductLimitSurvival2;&lt;BR /&gt;dynamic NStrata xName plotAtRisk plotCensored plotCL plotHW plotEP labelCL labelHW&lt;BR /&gt;labelEP maxTime xtickVals xtickValFitPol rowWeights method StratumID classAtRisk&lt;BR /&gt;plotTest GroupName Transparency SecondTitle TestName pValue _byline_ _bytitle_ _byfootnote_;&lt;BR /&gt;BeginGraph;&lt;BR /&gt;if (NSTRATA=1)&lt;BR /&gt;if (EXISTS(STRATUMID))&lt;BR /&gt;entrytitle METHOD " Survival Estimate" " for " STRATUMID;&lt;BR /&gt;else entrytitle METHOD " Survival Estimate";&lt;BR /&gt;endif;&lt;BR /&gt;entrytitle "With Number of Subjects at Risk" / textattrs=GRAPHVALUETEXT;&lt;BR /&gt;layout lattice / rows=2 rowweights=ROWWEIGHTS columndatarange=union rowgutter&lt;BR /&gt;=10;&lt;BR /&gt;cell;&lt;BR /&gt;layout overlay / xaxisopts=(shortlabel=XNAME offsetmin=.05 linearopts=(&lt;BR /&gt;viewmax=MAXTIME tickvaluelist=XTICKVALS tickvaluefitpolicy=&lt;BR /&gt;XTICKVALFITPOL)) yaxisopts=(label="Survival Probability" shortlabel=&lt;BR /&gt;"Survival" linearopts=(viewmin=0 viewmax=1 tickvaluelist=(0 .2 .4 .6&lt;BR /&gt;.8 1.0)));&lt;BR /&gt;if (PLOTHW=1 AND PLOTEP=0)&lt;BR /&gt;bandplot LimitUpper=HW_UCL LimitLower=HW_LCL x=TIME / displayTail&lt;BR /&gt;=false modelname="Survival" fillattrs=GRAPHCONFIDENCE name=&lt;BR /&gt;"HW" legendlabel=LABELHW display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTHW=0 AND PLOTEP=1)&lt;BR /&gt;bandplot LimitUpper=EP_UCL LimitLower=EP_LCL x=TIME / displayTail&lt;BR /&gt;=false modelname="Survival" fillattrs=GRAPHCONFIDENCE name=&lt;BR /&gt;"EP" legendlabel=LABELEP display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTHW=1 AND PLOTEP=1)&lt;BR /&gt;bandplot LimitUpper=HW_UCL LimitLower=HW_LCL x=TIME / displayTail&lt;BR /&gt;=false modelname="Survival" fillattrs=GRAPHDATA1&lt;BR /&gt;name="HW" legendlabel=LABELHW display=(outline);&lt;BR /&gt;bandplot LimitUpper=EP_UCL LimitLower=EP_LCL x=TIME / displayTail&lt;BR /&gt;=false modelname="Survival" fillattrs=GRAPHDATA2&lt;BR /&gt;name="EP" legendlabel=LABELEP display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTCL=1)&lt;BR /&gt;if (PLOTHW=1 OR PLOTEP=1)&lt;BR /&gt;bandplot LimitUpper=SDF_UCL LimitLower=SDF_LCL x=TIME /&lt;BR /&gt;displayTail=false modelname="Survival" display=(outline)&lt;BR /&gt;outlineattrs=GRAPHPREDICTIONLIMITS name="CL" legendlabel=&lt;BR /&gt;LABELCL display=(outline);&lt;BR /&gt;else&lt;BR /&gt;bandplot LimitUpper=SDF_UCL LimitLower=SDF_LCL x=TIME /&lt;BR /&gt;displayTail=false modelname="Survival" fillattrs=&lt;BR /&gt;GRAPHCONFIDENCE name="CL" legendlabel=LABELCL display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;endif;&lt;BR /&gt;stepplot y=SURVIVAL x=TIME / name="Survival" rolename=(_tip1=ATRISK&lt;BR /&gt;_tip2=EVENT) tiplabel=(_tip1="Number at Risk" _tip2=&lt;BR /&gt;"Observed Events") tip=(x y _tip1 _tip2) legendlabel="Survival";&lt;BR /&gt;if (PLOTCENSORED=1)&lt;BR /&gt;scatterplot y=CENSORED x=TIME / markerattrs=(symbol=plus)&lt;BR /&gt;tiplabel=(y="Survival Probability") name="Censored"&lt;BR /&gt;legendlabel="Censored";&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTCL=1 OR PLOTHW=1 OR PLOTEP=1)&lt;BR /&gt;discretelegend "Censored" "CL" "HW" "EP" / location=outside&lt;BR /&gt;halign=center;&lt;BR /&gt;else&lt;BR /&gt;if (PLOTCENSORED=1)&lt;BR /&gt;discretelegend "Censored" / location=inside autoalign=(&lt;BR /&gt;topright bottomleft);&lt;BR /&gt;endif;&lt;BR /&gt;endif;&lt;BR /&gt;endlayout;&lt;BR /&gt;endcell;&lt;BR /&gt;cell;&lt;BR /&gt;layout overlay / walldisplay=none xaxisopts=(display=none);&lt;BR /&gt;axistable x=TATRISK value=ATRISK / display=(label) valueattrs=(size=&lt;BR /&gt;7pt);&lt;BR /&gt;endlayout;&lt;BR /&gt;endcell;&lt;BR /&gt;endlayout;&lt;BR /&gt;else&lt;BR /&gt;entrytitle METHOD " Survival Estimates";&lt;BR /&gt;if (EXISTS(SECONDTITLE))&lt;BR /&gt;entrytitle SECONDTITLE / textattrs=GRAPHVALUETEXT;&lt;BR /&gt;endif;&lt;BR /&gt;layout lattice / rows=2 rowweights=ROWWEIGHTS columndatarange=union rowgutter&lt;BR /&gt;=10;&lt;BR /&gt;cell;&lt;BR /&gt;layout overlay / xaxisopts=(shortlabel=XNAME offsetmin=.05 linearopts=(&lt;BR /&gt;viewmax=MAXTIME tickvaluelist=XTICKVALS tickvaluefitpolicy=&lt;BR /&gt;XTICKVALFITPOL)) yaxisopts=(label="Survival Probability" shortlabel=&lt;BR /&gt;"Survival" linearopts=(viewmin=0 viewmax=1 tickvaluelist=(0 .2 .4 .6&lt;BR /&gt;.8 1.0)));&lt;BR /&gt;if (PLOTHW=1)&lt;BR /&gt;bandplot LimitUpper=HW_UCL LimitLower=HW_LCL x=TIME / displayTail&lt;BR /&gt;=false group=STRATUM index=STRATUMNUM modelname="Survival"&lt;BR /&gt;display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTEP=1)&lt;BR /&gt;bandplot LimitUpper=EP_UCL LimitLower=EP_LCL x=TIME / displayTail&lt;BR /&gt;=false group=STRATUM index=STRATUMNUM modelname="Survival"&lt;BR /&gt;display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;if (PLOTCL=1)&lt;BR /&gt;if (PLOTHW=1 OR PLOTEP=1)&lt;BR /&gt;bandplot LimitUpper=SDF_UCL LimitLower=SDF_LCL x=TIME /&lt;BR /&gt;displayTail=false group=STRATUM index=STRATUMNUM modelname=&lt;BR /&gt;"Survival" display=(outline) outlineattrs=(pattern=&lt;BR /&gt;ShortDash) display=(outline);&lt;BR /&gt;else&lt;BR /&gt;bandplot LimitUpper=SDF_UCL LimitLower=SDF_LCL x=TIME /&lt;BR /&gt;displayTail=false group=STRATUM index=STRATUMNUM modelname=&lt;BR /&gt;"Survival" display=(outline);&lt;BR /&gt;endif;&lt;BR /&gt;endif;&lt;BR /&gt;stepplot y=SURVIVAL x=TIME / group=STRATUM index=STRATUMNUM name=&lt;BR /&gt;"Survival" rolename=(_tip1=ATRISK _tip2=EVENT) tiplabel=(_tip1=&lt;BR /&gt;"Number at Risk" _tip2="Observed Events") tip=(x y _tip1 _tip2);&lt;BR /&gt;if (PLOTCENSORED=1)&lt;BR /&gt;scatterplot y=CENSORED x=TIME / group=STRATUM index=STRATUMNUM&lt;BR /&gt;tiplabel=(y="Survival Probability") markerattrs=(symbol=plus);&lt;BR /&gt;endif;&lt;BR /&gt;DiscreteLegend "Survival" / title=GROUPNAME location=outside;&lt;BR /&gt;if (PLOTCENSORED=1)&lt;BR /&gt;if (PLOTTEST=1)&lt;BR /&gt;layout gridded / rows=2 autoalign=(TOPRIGHT BOTTOMLEFT TOP&lt;BR /&gt;BOTTOM) border=true BackgroundColor=GraphWalls:Color Opaque&lt;BR /&gt;=true;&lt;BR /&gt;entry "+ Censored";&lt;BR /&gt;if (PVALUE &amp;lt; .0001)&lt;BR /&gt;entry TESTNAME " p " eval (PUT(PVALUE, PVALUE6.4));&lt;BR /&gt;else&lt;BR /&gt;entry TESTNAME " p=" eval (PUT(PVALUE, PVALUE6.4));&lt;BR /&gt;endif;&lt;BR /&gt;endlayout;&lt;BR /&gt;else&lt;BR /&gt;layout gridded / rows=1 autoalign=(TOPRIGHT BOTTOMLEFT TOP&lt;BR /&gt;BOTTOM) border=true BackgroundColor=GraphWalls:Color Opaque&lt;BR /&gt;=true;&lt;BR /&gt;entry "+ Censored";&lt;BR /&gt;endlayout;&lt;BR /&gt;endif;&lt;BR /&gt;else&lt;BR /&gt;if (PLOTTEST=1)&lt;BR /&gt;layout gridded / rows=1 autoalign=(TOPRIGHT BOTTOMLEFT TOP&lt;BR /&gt;BOTTOM) border=true BackgroundColor=GraphWalls:Color Opaque&lt;BR /&gt;=true;&lt;BR /&gt;if (PVALUE &amp;lt; .0001)&lt;BR /&gt;entry TESTNAME " p " eval (PUT(PVALUE, PVALUE6.4));&lt;BR /&gt;else&lt;BR /&gt;entry TESTNAME " p=" eval (PUT(PVALUE, PVALUE6.4));&lt;BR /&gt;endif;&lt;BR /&gt;endlayout;&lt;BR /&gt;endif;&lt;BR /&gt;endif;&lt;BR /&gt;endlayout;&lt;BR /&gt;endcell;&lt;BR /&gt;cell;&lt;BR /&gt;layout overlay / walldisplay=none xaxisopts=(display=none);&lt;BR /&gt;axistable x=TATRISK value=ATRISK / display=(label) valueattrs=(size=&lt;BR /&gt;7pt) class=CLASSATRISK colorgroup=CLASSATRISK;&lt;BR /&gt;endlayout;&lt;BR /&gt;endcell;&lt;BR /&gt;endlayout;&lt;BR /&gt;endif;&lt;BR /&gt;if (_BYTITLE_)&lt;BR /&gt;entrytitle _BYLINE_ / textattrs=GRAPHVALUETEXT;&lt;BR /&gt;else&lt;BR /&gt;if (_BYFOOTNOTE_)&lt;BR /&gt;entryfootnote halign=left _BYLINE_;&lt;BR /&gt;endif;&lt;BR /&gt;endif;&lt;BR /&gt;EndGraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="survivalplot without transparency outlined.PNG" style="width: 494px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93365i2AE5C24F3D50F35A/image-size/large?v=v2&amp;amp;px=999" role="button" title="survivalplot without transparency outlined.PNG" alt="survivalplot without transparency outlined.PNG" /&gt;&lt;/span&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 21:48:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914967#M26479</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-07T21:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914969#M26480</link>
      <description>&lt;P&gt;That is the expected output. Now, if you want, you can also tweak the line attributes to improve the display. For example, set LINEATTRS=(thickness=3) on the STEPPLOTs to help them stand out from the bands.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 21:59:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914969#M26480</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-07T21:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914974#M26481</link>
      <description>&lt;P&gt;I see, it bolded survival lines. Thank you again!&lt;BR /&gt;I really appreciate you taking time to look into my question.&amp;nbsp; For me, the problem is solved at this point, I've EPS file which I needed to create and should be able to modify plot attributes as needed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:27:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/914974#M26481</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-02-07T22:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS GRAHICS - how to create .eps file?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/986198#M26971</link>
      <description>&lt;P&gt;I guess this is related to the fact that *.eps does not support transparency. Even if we output an EPS file using an &lt;CODE&gt;ods ps&lt;/CODE&gt; statement, it may only generate a rasterized EPS, which is still different from a true vector EPS. Is there a better solution for handling transparency with EPS, or an alternative approach you would recommend?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Apr 2026 03:02:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-GRAHICS-how-to-create-eps-file/m-p/986198#M26971</guid>
      <dc:creator>kevinkk</dc:creator>
      <dc:date>2026-04-12T03:02:03Z</dc:date>
    </item>
  </channel>
</rss>

