09-01-2015
Snow_Belssas
Calcite | Level 5
Member since
06-23-2011
- 10 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Snow_Belssas
Subject Views Posted 1279 04-29-2010 05:03 AM 2198 09-09-2009 05:04 AM 2198 09-08-2009 03:18 PM 2198 09-08-2009 03:10 PM 2210 09-08-2009 10:53 AM 2303 07-15-2009 06:39 AM 2303 07-14-2009 03:24 AM 2372 07-10-2009 03:21 AM 3269 06-04-2009 03:16 AM 885 05-15-2008 10:15 AM -
Activity Feed for Snow_Belssas
- Posted read early ssd01 file on SAS Health and Life Sciences. 04-29-2010 05:03 AM
- Posted Re: Using label in two-way freq table on Statistical Procedures. 09-09-2009 05:04 AM
- Posted Re: Using label in two-way freq table on Statistical Procedures. 09-08-2009 03:18 PM
- Posted Re: Using label in two-way freq table on Statistical Procedures. 09-08-2009 03:10 PM
- Posted Using label in two-way freq table on Statistical Procedures. 09-08-2009 10:53 AM
- Posted Re: adding a reg or loess line in VLINE panel in SGPANEL plot on Statistical Procedures. 07-15-2009 06:39 AM
- Posted Re: adding a reg or loess line in VLINE panel in SGPANEL plot on Statistical Procedures. 07-14-2009 03:24 AM
- Posted adding a reg or loess line in VLINE panel in SGPANEL plot on Statistical Procedures. 07-10-2009 03:21 AM
- Posted Merge RTF files into one on ODS and Base Reporting. 06-04-2009 03:16 AM
- Posted Save message in DDE on SAS Programming. 05-15-2008 10:15 AM
04-29-2010
05:03 AM
Dear SAS users
I have some old SAS 6.12 unix version data need to be read into current SAS version 8.2 or 9.2. As SAS 6.12 on Unix was no longer available, any one ever did the same? could you give any tip on that?
BTW, from one SAS upport message (see the link)
http://support.sas.com/kb/4/484.html
it says that EG4.1 can read (import) the file, but it isn't true as I tested.
Many thanks in advance for your time.
Snow@Belssas
... View more
09-09-2009
05:04 AM
Thanks, I have submitted the problem to our dear SAS tech support.
... View more
09-08-2009
03:18 PM
Hi again
Sorry, I forgot to post the used sample program see as printed.
data class;
set sashelp.class;
label sex="Gender"
age="Age in Years";
run;
proc template;
define crosstabs Base.Freq.CrossTabFreqs;
define header tableof;
text "Table of " _row_label_ " by " _col_label_;
end;
define header rowsheader;
text _row_label_ / _row_label_ ^= " ";
text _row_name_;
end;
define header colsheader;
text _col_label_ / _col_label_ ^= " ";
text _col_name_;
end;
cols_header=colsheader;
rows_header=rowsheader;
header tableof;
end;
run;
ods listing close;
ods HTML file="body.html";
proc freq data=class;
tables sex*age;
run;
ods html close;
ods listing;
... View more
09-08-2009
03:10 PM
Hi SBB
Many thanks for your info given. I am working with SAS 9.2, but when I tested the samples copied from (in the first link) techno paper, either RTF or original HTML format, my SAS simply crached. Any idea about that?
Regards
Snow
... View more
09-08-2009
10:53 AM
Dears
Does any of you managed to create a two-way table from PROC FREQ which only uses var label text but not default "Var-name (Var-label)".
Many thanks in advance for your help.
Snow
... View more
07-15-2009
06:39 AM
Hi, Cynthia
Thanks again for your suggestion.
Put it simple, I made a paneled (by group) spaghetti plot (on different time points)with all lines grayed and added into every panel one line for the group mean values (on different time points). The REFLINE/BAND does not fit that purpose. So far my client is still happy to see what I did by using GREPLAY. Else I have to send my request to SAS support. However, I was wondering if SGRENDER can do something about that if I have time.
Kind Regards
SSAS
... View more
07-14-2009
03:24 AM
Many thanks to you, Cynthia
Originally I have done that just adding a mean profile line for a grayed spaghetti plot for a group of subjects in SAS 8.2, 9.13. I was too happy to see version 9.2 now having that VLINE panel plot which gives much ease on this kind of graph. However, from your suggested doc limks, I have see no way to do that in SG PROCs yet, so I shall keep using my old fashioned GREPLAY. Anyway, many thanks.
Kind regards
SSAS
... View more
07-10-2009
03:21 AM
Dear SAS experts
Any of you has done to add a reg (or Loess smooth) line into SGPANEL-VLINE plot. The line can be added when the panel plot is scatter (or just in SGSCATTER). However, when I wanted the VLINE panel (kind of subject profile plot), then adding an extra reg or Loess smoth line seems to be not possible.
Any idea about that? Many thanks in advance.
Best SSAS
... View more
06-04-2009
03:16 AM
Dear SAS experts
Could any of you show me some tips or program codes which can merge rtf files (from ODS RTF) into one single RTF file. Many thanks in advance.
SSAS
... View more
05-15-2008
10:15 AM
Dears
In one of my macro using DDE function to import MS EXCEL spread sheet into SAS, there is always a window pop up in openned EXCEL application which asks me to save (or not) the openned Excel file. This interrupts my process automation. Could any of you tell my how to avoid that (it was not the case in early version of EXCEL if I remember well)? BTW, I am using EXCEL 2007 and SAS 913.
Many thanks in advance
Ssas
... View more