First
|
Prev |
Next
|
Last
Pages: 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
How to change size of new Sgplot output Check out this link: http://support.sas.com/documentation/cdl/en/grstatproc/61948/HTML/default/a0 03127724.htm On Mon, 1 Feb 2010 06:42:37 -0800, Hoskins, Richard E. (DOH) <Richard.Hoskins(a)DOH.WA.GOV> wrote: How does one change the physical size and height/width ratio of charts made in the new SAS graphic... 2 Feb 2010 15:33
Problem running bat file Hello Group, I've a problem while running a .bat file I got the bunch of errors. When it open SAS it gives some warning and error message in DOS cmd prompt. -CONFIG is not recognized as internal or external command, operable program or batch file -sysin is not rec... 2 Feb 2010 15:33
How to change size of new Sgplot output How does one change the physical size and height/width ratio of charts made in the new SAS graphics such as Proc Sgplot? Also the pixel density and/or quality of the image? I have figured out how to fiddle with templates to get different font sizes, etc but I can't seem to change the height/width ratio of size of... 2 Feb 2010 15:33
how to avoid repeats of title and footnote Dear friends plz help me in following code once i execute following code, it converts image of admit table but title and footnote repeats twice; How avoid repeats of title and footnote? is there any option; plz let me know goptions reset=global hsize=7.5in vsize=9in hpos=75 vpos=60 NOC... 2 Feb 2010 15:32
Access MsAccess data Hi everyone. May I please ask how to I address the problem of many decimal places so that SAS shows exactly what it is shown in MsAccess? options validvarname=any; libname MsAccess ".....\Data.mdb" scan_textsize=yes use_datetype=yes scan_timetype=yes scanmemo=yes dbmax_text=32767 dbgen_name=dbms; data AB; set... 5 Feb 2010 13:56
How to create 10 deciles using Proc Rank when there are too Nick: If there are two many ties to make deciles relatively unique, then what do mean by "deciles"? As an extreme example of my question, consider a binary variable with exactly 500 zeroes and 500 ones. Would you then insist on getting deciles? You apparently have a somewhat similar, but less extreme, situa... 2 Feb 2010 15:32
How to create 10 deciles using Proc Rank when there are too many ties Hello everyone, I am trying to create 10 deciles using Proc Rank out of a dataset with about 100K obs. Here is the code I used: Proc rank data=mydata out=r_mydata group=10 ties=low descending; var myscore; ranks r_myscore; run; Unfortunately I got fewer than 10 deciles - for some score I got decile 0-7... 2 Feb 2010 15:32
replicate PROC AUTOREG using PROC REG Hi, I wonder if it is possible to replicate a PROC AUTOREG model by running multiple linear regressions (such as Proc Reg). The reason for doing this is that I need to manipulate data manually (such as weight/ reweight observations, adjust for outliers and create different regimes) that AUTOREG would not accommoda... 2 Feb 2010 15:32
puzzling SAS I/O question Is it on a server? If so I'd blame the server, probably has use issues (more people hitting it now). Or perhaps you have (nearly) run out of storage space and it's scrambling to find space for the last bit? Can you find the temporary work location and see how big the file is that's being created? Should give yo... 2 Feb 2010 15:33
Simple sum in proc sql You can try the NVL function in PROC sql On Fri, Jan 29, 2010 at 12:18 PM, SAS_learner <proccontents(a)gmail.com>wrote: data t; input t $2. x y ; A 20 30 B 30 20 C 30 . ;;; Run ; Output dataset is sum of X and Y T X y X_Sum Y_Sum A 20 30 80 . ... 2 Feb 2010 15:33 |