html - Changing SAS ODS contentitem for PROC SQL SELECT statement -


When creating an ODS output in an HTML file in SAS, it is also possible to create table of contents with "content" and "content".

frame "option:

  ODS HTML path =" c: \ path \ " (Url = none) body = "body.html" CONTENTS = "content.html" FRAME = "frame.html"; ... (make ODS output here) ... close the ODS HTML;  < / Pre> 

The default output is quite common, and therefore, the material is better to change the protocol:

  ODS perlabel label for 'analysis';   

It works in all cases

It would also be good to change the content. PROC with GCHART It works as follows:

  proc gchart data = mydata; block datait / description = "description of graph"; run;   

but PROC SQL selection

  Summary of ods proclabel 'analysis variable' with   

I can change the contents of the list in the list list. , But how can the content change which is always by default in "query results" in "PROC SQL; SELECT ... from the table ...; Statement?

The following is an example table of content output from the examples given below:

  List table 1. Label for analysis · Graph description 2. Summary analysis variables · Query Result   

There you can see

  a   

line Contentitem I would like to change

You have to edit BASE.SQL How to do this in your paper on page 7.

An excerpt, slightly modified for your specific question, appropriate:

  proc template; Edit base.sql; Mvar SQLLL; * It defines & amp; Sqlcl macro variable that stores your value; Contents_label = SQLcl; * Usage and SQLLL; End; Run; % Sqlcl = Summary of Analysis Variables; Proc sql; Select * from sashelp.class; leave;    

Comments

Popular posts from this blog

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -

Matlab transpose a table vector -

c# - Textbox not clickable but editable -