*; * Creating charts...; *; goptions ftext=SWISS; goptions nodisplay device=WIN htext=3 pct; axis1 width=2 offset=(1,1) label=(height=4 pct rotate=90 angle=270) minor=none; axis2 width=2 label=(height=4 pct) minor=none; pattern1 value= solid; proc gchart data= EMPROJ.TSMP2UNU gout= EMPROJ.DMTIRZ66; *; title height=6 pct "BAD"; vbar BAD / name= "BAD" description= "BAD" freq type= freq noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "LOAN"; vbar LOAN / name= "LOAN" description= "LOAN" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "MORTDUE"; vbar MORTDUE / name= "MORTDUE" description= "MORTDUE" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "VALUE"; vbar VALUE / name= "VALUE" description= "VALUE" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "REASON"; vbar REASON / name= "REASON" description= "REASON" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "JOB"; vbar JOB / name= "JOB" description= "JOB" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "YOJ"; vbar YOJ / name= "YOJ" description= "YOJ" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "DEROG"; vbar DEROG / name= "DEROG" description= "DEROG" freq type= freq noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "DELINQ"; vbar DELINQ / name= "DELINQ" description= "DELINQ" freq type= freq noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLAGE"; vbar CLAGE / name= "CLAGE" description= "CLAGE" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "NINQ"; vbar NINQ / name= "NINQ" description= "NINQ" freq type= freq noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLNO"; vbar CLNO / name= "CLNO" description= "CLNO" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "DEBTINC"; vbar DEBTINC / name= "DEBTINC" description= "DEBTINC" freq type= freq noframe missing raxis=axis1 maxis=axis2; run; quit; goptions display; *; * Creating charts...; *; goptions ftext=SWISS; goptions nodisplay device=WIN htext=3 pct; axis1 width=2 offset=(1,1) label=(height=4 pct rotate=90 angle=270) minor=none; axis2 width=2 label=(height=4 pct) minor=none; pattern1 value= solid; proc gchart data= EMPROJ.TSMP2UNU gout= EMPROJ.DMTIRZ66; *; title height=6 pct "LOAN by BAD"; vbar LOAN / name= "LOANxBAD" description= "LOAN by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "MORTDUE by BAD"; vbar MORTDUE / name= "MORTDUExbad" description= "MORTDUE by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "VALUE by BAD"; vbar VALUE / name= "VALUExbad" description= "VALUE by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "REASON by BAD"; vbar REASON / name= "REASONxbad" description= "REASON by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "JOB by BAD"; vbar JOB / name= "JOBxbad" description= "JOB by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "YOJ by BAD"; vbar YOJ / name= "YOJxbad" description= "YOJ by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "DEROG by BAD"; vbar DEROG / name= "DEROGxbad" description= "DEROG by BAD" freq type= freq subgroup= bad noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "DELINQ by BAD"; vbar DELINQ / name= "DELINQxbad" description= "DELINQ by BAD" freq type= freq subgroup= bad noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLAGE by BAD"; vbar CLAGE / name= "CLAGExbad" description= "CLAGE by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "NINQ by BAD"; vbar NINQ / name= "NINQxbad" description= "NINQ by BAD" freq type= freq subgroup= bad noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLNO by BAD"; vbar CLNO / name= "CLNOxbad" description= "CLNO by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "DEBTINC by BAD"; vbar DEBTINC / name= "DEBTINCxbad" description= "DEBTINC by BAD" freq type= freq subgroup= bad noframe missing raxis=axis1 maxis=axis2; run; quit; goptions display; *; * Creating charts...; *; goptions ftext=SWISS; goptions nodisplay device=WIN htext=3 pct; axis1 width=2 offset=(1,1) label=(height=4 pct rotate=90 angle=270) minor=none; axis2 width=2 label=(height=4 pct) minor=none; pattern1 value= solid; proc gchart data= EMPROJ.TSMP2UNU gout= EMPROJ.DMTIRZ66; *; title height=6 pct "BAD vs. DEBTINC [mean]"; vbar BAD / name= "BADxDEBTINC" description= "BAD vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "LOAN vs. DEBTINC [mean]"; vbar LOAN / name= "LOANxdebtinc" description= "LOAN vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "MORTDUE vs. DEBTINC [mean]"; vbar MORTDUE / name= "MORTDUExdebtinc" description= "MORTDUE vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "VALUE vs. DEBTINC [mean]"; vbar VALUE / name= "VALUExdebtinc" description= "VALUE vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "REASON vs. DEBTINC [mean]"; vbar REASON / name= "REASONxdebtinc" description= "REASON vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "JOB vs. DEBTINC [mean]"; vbar JOB / name= "JOBxdebtinc" description= "JOB vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "YOJ vs. DEBTINC [mean]"; vbar YOJ / name= "YOJxdebtinc" description= "YOJ vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "DEROG vs. DEBTINC [mean]"; vbar DEROG / name= "DEROGxdebtinc" description= "DEROG vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "DELINQ vs. DEBTINC [mean]"; vbar DELINQ / name= "DELINQxdebtinc" description= "DELINQ vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLAGE vs. DEBTINC [mean]"; vbar CLAGE / name= "CLAGExdebtinc" description= "CLAGE vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; title height=6 pct "NINQ vs. DEBTINC [mean]"; vbar NINQ / name= "NINQxdebtinc" description= "NINQ vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing discrete raxis=axis1 maxis=axis2; run; title height=6 pct "CLNO vs. DEBTINC [mean]"; vbar CLNO / name= "CLNOxdebtinc" description= "CLNO vs. DEBTINC [mean]" mean type= mean sumvar= debtinc mean noframe missing raxis=axis1 maxis=axis2; run; quit; goptions display; *; * Creating scatter plots...; *; goptions ftext=SWISS; goptions nodisplay device=WIN htext=3 pct hpos=100 vpos=50; *; axis1 minor=none offset=(5,5) width=2 label=(height=4 pct); axis2 minor=none offset=(10,10) width=2 label=(height=4 pct); *; proc gplot data= EMPROJ.TSMP2UNU gout= EMPROJ.DMTIRZ66; *; title height=6 pct "LOAN x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * LOAN / vaxis= axis2 haxis= axis1 name= "LOANxBAD0" description= "LOAN x BAD [scatter]" noframe; run; title height=6 pct "MORTDUE x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * MORTDUE / vaxis= axis2 haxis= axis1 name= "MORTDUExBAD0" description= "MORTDUE x BAD [scatter]" noframe; run; title height=6 pct "VALUE x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * VALUE / vaxis= axis2 haxis= axis1 name= "VALUExBAD0" description= "VALUE x BAD [scatter]" noframe; run; title height=6 pct "REASON x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * REASON / vaxis= axis2 haxis= axis2 name= "REASONxBAD0" description= "REASON x BAD [scatter]" noframe; run; title height=6 pct "JOB x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * JOB / vaxis= axis2 haxis= axis2 name= "JOBxBAD0" description= "JOB x BAD [scatter]" noframe; run; title height=6 pct "YOJ x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * YOJ / vaxis= axis2 haxis= axis1 name= "YOJxBAD0" description= "YOJ x BAD [scatter]" noframe; run; title height=6 pct "DEROG x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * DEROG / vaxis= axis2 haxis= axis1 name= "DEROGxBAD0" description= "DEROG x BAD [scatter]" noframe; run; title height=6 pct "DELINQ x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * DELINQ / vaxis= axis2 haxis= axis1 name= "DELINQxBAD0" description= "DELINQ x BAD [scatter]" noframe; run; title height=6 pct "CLAGE x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * CLAGE / vaxis= axis2 haxis= axis1 name= "CLAGExBAD0" description= "CLAGE x BAD [scatter]" noframe; run; title height=6 pct "NINQ x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * NINQ / vaxis= axis2 haxis= axis1 name= "NINQxBAD0" description= "NINQ x BAD [scatter]" noframe; run; title height=6 pct "CLNO x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * CLNO / vaxis= axis2 haxis= axis1 name= "CLNOxBAD0" description= "CLNO x BAD [scatter]" noframe; run; title height=6 pct "DEBTINC x BAD [scatter]"; symbol value=dot cv=blue interpol=; plot BAD * DEBTINC / vaxis= axis2 haxis= axis1 name= "DEBTINCxBAD0" description= "DEBTINC x BAD [scatter]" noframe; run; quit; goptions display; *; * Creating scatter plots...; *; goptions ftext=SWISS; goptions nodisplay device=WIN htext=3 pct hpos=100 vpos=50; *; axis1 minor=none offset=(5,5) width=2 label=(height=4 pct); axis2 minor=none offset=(10,10) width=2 label=(height=4 pct); *; proc gplot data= EMPROJ.TSMP2UNU gout= EMPROJ.DMTIRZ66; *; title height=6 pct "BAD x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=; plot DEBTINC * BAD / vaxis= axis1 haxis= axis2 name= "BADxDEBTINC0" description= "BAD x DEBTINC [scatter]" noframe; run; title height=6 pct "LOAN x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * LOAN / vaxis= axis1 haxis= axis1 name= "LOANxDEBTINC0" description= "LOAN x DEBTINC [scatter]" noframe; run; title height=6 pct "MORTDUE x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * MORTDUE / vaxis= axis1 haxis= axis1 name= "MORTDUExDEBTINC0" description= "MORTDUE x DEBTINC [scatter]" noframe; run; title height=6 pct "VALUE x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * VALUE / vaxis= axis1 haxis= axis1 name= "VALUExDEBTINC0" description= "VALUE x DEBTINC [scatter]" noframe; run; title height=6 pct "REASON x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=; plot DEBTINC * REASON / vaxis= axis1 haxis= axis2 name= "REASONxDEBTINC0" description= "REASON x DEBTINC [scatter]" noframe; run; title height=6 pct "JOB x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=; plot DEBTINC * JOB / vaxis= axis1 haxis= axis2 name= "JOBxDEBTINC0" description= "JOB x DEBTINC [scatter]" noframe; run; title height=6 pct "YOJ x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * YOJ / vaxis= axis1 haxis= axis1 name= "YOJxDEBTINC0" description= "YOJ x DEBTINC [scatter]" noframe; run; title height=6 pct "DEROG x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * DEROG / vaxis= axis1 haxis= axis1 name= "DEROGxDEBTINC0" description= "DEROG x DEBTINC [scatter]" noframe; run; title height=6 pct "DELINQ x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * DELINQ / vaxis= axis1 haxis= axis1 name= "DELINQxDEBTINC0" description= "DELINQ x DEBTINC [scatter]" noframe; run; title height=6 pct "CLAGE x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * CLAGE / vaxis= axis1 haxis= axis1 name= "CLAGExDEBTINC0" description= "CLAGE x DEBTINC [scatter]" noframe; run; title height=6 pct "NINQ x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * NINQ / vaxis= axis1 haxis= axis1 name= "NINQxDEBTINC0" description= "NINQ x DEBTINC [scatter]" noframe; run; title height=6 pct "CLNO x DEBTINC [scatter]"; symbol value=dot cv=blue interpol=rlclm90 ci= red co=green; plot DEBTINC * CLNO / vaxis= axis1 haxis= axis1 name= "CLNOxDEBTINC0" description= "CLNO x DEBTINC [scatter]" noframe; run; quit; goptions display; *; * Show data set info; *; title "Contents of plotting data set"; proc contents data= EMPROJ.TSMP2UNU; run; title " ";