What report output formats can you generate using SAS?
Answers were Sorted based on User's Feedback
Answer / joe
Sas generates output formats like RTF,HTML,listings using
Sas ods.
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / sheetal
Following report o/p we can execute through sas:
html, pdf, rtf, dat, txt, xls, csv, cross tabular, list
report, summary report
| Is This Answer Correct ? | 4 Yes | 0 No |
how do you pull data from equifax?tell me the process?
0 Answers Synchrony Financial,
What are the parameters of scan function?
Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
hi i am nipun can anybody tell me that if a clinical sas programmer write the code and after successfull execution where do they store it. how they submit tables to TL how work is assigned to programmers either both code, log, output to be submitted. can any one tell me the process
what is change analysis in sas di ? : Sas-di
What is the basic structure of a sas program?
Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190
What is a post baseline?
is there any differnce between proc means and proc summary?
how do u validate the program which u have written.
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks