Tag: REPORT

Solve “A Puzzle for Pirates” with SAS

This article introduces how to solve the pirate game with a recursive solving algorithm in SAS, and how to analyze and visualize the law behind the complex logic of the pirate game. If you join in a pirate game next time, you can know your destiny ahead of time to reap the benefits and avoid getting killed.

Solve “A Puzzle for Pirates” with SAS was published on SAS Users.

Solve “A Puzzle for Pirates” with SAS

This article introduces how to solve the pirate game with a recursive solving algorithm in SAS, and how to analyze and visualize the law behind the complex logic of the pirate game. If you join in a pirate game next time, you can know your destiny ahead of time to reap the benefits and avoid getting killed.

Solve “A Puzzle for Pirates” with SAS was published on SAS Users.

{nbspace x} in PROC REPORT

ods escapechar=”^”;proc report data = statsp nowd split = ‘|’headline headskip             style(report) = [asis = on PROTECTSPECIALCHARS=off outputwidth=9in]      &nb…

Apply color to PROC REPORT

Highlight a row: compute __stresc;  if index(__stresc,’>’) then call define(_row_,”style”,”style={backgroundcolor=red}”);endcomp;Highlight a cell: compute __stresc;   if index(__stresc,’>’) then call define(_col_,”style”…

A Couple of Proc Template for Report

proc template;  define style timesrtf;  parent=styles.journal;  replace fonts /     ‘BatchFixedFont’ = (‘Times’,9pt)     ‘TitleFont’ = (‘Times’,12pt)     ‘TitleFont2’ = (‘Times’…

SAS ODS Report Writing Interface: A Quick Demo

I personally nominated SAS ODS Report Writing Interface was the one of the best technology I found in SAS in 2012. It can generates reports cell by cell and row by row and has much flexibility to produce highly customized reports. Basically, to use it, first assign an ODS destination. Nothing new, and I prefer […]