Re: how to create a matrix in sas? #4033 (6/27/2005 8:36:33 AM) comp.soft-sys.sas Hi, you can use the proc freq and sparse option. proc freq data=?; table name age gender / sparse out=final (keep=name age gender ); run; St�phane. ----Message d'origine---- >Date: Fri, 24 Jun 200... datametric
Re: 6/7-6/13 Unofficial SAS Weblog Posts027 (6/13/2005 12:28:04 PM) comp.soft-sys.sas It is a BLOG about SAS and of what takes place all around. It is funny, instructive and pleasant to read. St�phane. ----Message d'origine---- >Date: Mon, 13 Jun 2005 04:57:34 -0700 >De: Hari >Sujet: ... datametric
Re: Vuong test041 (6/3/2005 7:36:42 PM) comp.soft-sys.sas Hello St�phanie, I believe the proc model supports likelihood ratio tests proposed by Vuong for model specification and non-nested hypotheses. St�phane. ----Message d'origine---- >Date: Fri, 3 Jun 20... datametric
Re: Vefiry if an ODS style exists025 (6/1/2005 3:47:18 PM) comp.soft-sys.sas Hi, I suggest you to use this way : ods output stats=table(where=(type='Style')); proc template ; list / store=SASHELP.TMPLMST;run; ... test of existence into the table.. but you have to manage the differ... datametric
Re: TAGSET MSOFFICE2K : XML and Excel023 (5/25/2005 12:04:51 PM) comp.soft-sys.sas Hi / Salut, Chevell provides a link at the end of there papers about microsoft XML userguide. Go and see, it's excellent. St�phane. ----Message d'origine---- >Date: Wed, 25 May 2005 13:15:59 +0200 ... datametric
Chisq generated tables233 (5/18/2005 8:06:23 PM) comp.soft-sys.sas Hi, I have a question about a proc freq. I have a table names TEST with 1 million of rows. data test; set &tabin; %do b=1 %to &nbgp; %do k=1 %to &nbmod; vartest&b&k=(&&var&k=&&mod&k); classe&b&k=(&vargro... datametric
Re: Range of variable in Historgam016 (5/13/2005 8:42:10 AM) comp.soft-sys.sas See the AXIS statement before any proc for GRAPH. St�phane. ----Message d'origine---- >Date: Fri, 13 May 2005 02:17:55 -0400 >De: Maria Ktotam >Sujet: Range of variable in Historgam >A: SAS-L@LI... datametric
Re: superimposing of distribution on histogram017 (5/13/2005 8:21:43 AM) comp.soft-sys.sas Hi, for instance... :-( the Pareto distribution chart is included into the QC module / the proc pareto. : proc pareto data=...; vbar cause / cframe = ligr cbars = vigb ... datametric
Re: Frequency table035 (5/13/2005 8:03:26 AM) comp.soft-sys.sas Hi, use a proc univariate to see the percentiles (Q1, Q3... for example) and then the distribution. You can either build groups or build a format by hand with the intervals (provided by the univariate). Fina... datametric
Re: Datastep email with outlook email engine #7023 (5/11/2005 8:39:28 AM) comp.soft-sys.sas Hi, Have you put the email options into your config.cfg ? I suggest you to go and mine into the SAS-L archive, we discussed about the email engine many times. St�phane. ----Message d'origine---- >Date: ... datametric
Export of output to excel127 (5/10/2005 9:01:16 AM) comp.soft-sys.sas Dear all, I am performing univariate logistic regression for a number of variables (about 75) using codes similar to as under: ODS SELECT TYPEIII ODDSRATIOS FitStatistics; PROC LOGISTIC DESCENDING; C... navneetd(13)
Datastep email with outlook email engine313 (5/11/2005 2:22:10 AM) comp.soft-sys.sas Dear All, I was trying to send out a notification email from a datastep. I don't have email server installed on my machine. The only email client is the MS OUTLOOK, which was configured to connect to an IMAP m... zhangyu05(659)
Frequency table255 (5/13/2005 6:15:36 AM) comp.soft-sys.sas A variable has a lot of different values. How to make an interval frequency table? Thank you in advance ... mariaz(7)
Range of variable in Historgam123 (5/13/2005 6:17:55 AM) comp.soft-sys.sas How to change a range of x-axis for histogram as well as for other graphs in SAS (not as default all values of variable). Thank you in advance ... mariaz(7)
TAGSET MSOFFICE2K : XML and Excel250 (5/25/2005 11:15:59 AM) comp.soft-sys.sas Hi, Do you know if Microsoft provides a complete userguide on how you can modify Excel using XML. It is partially explained in diferrent SUGI papers regarding TAGSET MSOOFICE2K or in the paper of Chevell Parke... olivier.leconte(27)
Vuong test474 (6/3/2005 2:33:42 PM) comp.soft-sys.sas Hello Is it possible to perform the Vuong statistique with SAS to compare two non-nested models ? If not, do you know some other tests which could compare a zero-inflated poisson model to a poisson model ? Ma... nanie.payet(8)
Automated import of dynamic labeled files into SAS220 (5/8/2005 4:31:01 PM) comp.soft-sys.sas Hi, I want to write a SAS-Base program which is able to import dynamic labeled files into SAS. The filenames have no specific pattern. Only one part of the filename is static. For example: File 1: attach_first... Tommes_D(3)
how to create a matrix in sas?1319 (6/25/2005 2:27:24 AM) comp.soft-sys.sas for example, i have the following dataset name age gender ..... A 5 M B 9 M C 7 F I want to get all possible combination between name and age to get output like this name date ... yue(2)