BookmarkSubscribeRSS Feed
ccherrub
Obsidian | Level 7

How would I be able to do this at the bottom of my tables?

 

"....after all coefficients,
that says “State, Occupation, and Industry Controls?” and for each model that has such controls
put “Yes” in the corresponding column (and “No” otherwise)"

 

": Number of Obs. (number of observations used in that regression), Adjusted R-squared,
and the F-statistics related to the overall significance of variables included in each model (call it
“Overall Significance”)."

2 REPLIES 2
Ksharp
Super User
ods rtf file="&path.report.rtf" style=_journal  ;
proc report data=output nowd spanrows style(header)={font_style=roman just=l fontsize=0.38cm}
 style(report)={outputwidth=100% cellpadding=0 cellspacing=0} style(column)={just=l  fontsize=0.38cm }
;
columns label project  test placebo ;
define label/group style(header)={just=l} ;
define project/group style(header)={just=l} order=data;
define test/group style(header)={just=l} "试验组/(N=&n_sub_t.)";
define placebo/group style(header)={just=l} "对照组/(N=&n_sub_p.)";
run;
ods text="(*ESC*)S={fontsize=0.38cm fontfamily='MYingHei_18030_C-Medium' asis=on}人口学资料";

ods rtf close;
andreas_lds
Jade | Level 19

Using the footnote statement before the procedure creating the table.

 

footnote 'The class of 1999';

proc print data=sashelp.class;
run;

footnote;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 479 views
  • 0 likes
  • 3 in conversation