what is program data vector? : Sas-administrator
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
how can get the first and last observations in a dataset using Proc SQl?
data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
in which companies SAS openings are there? List of companies using SAS technology.
What are _numeric_ and _character_ and what do they do?
what is the Population you used in your project, is it ITT or PP?
0 Answers Accenture, Quintiles,
There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
what is the difference between SET and MERGE?
Are you familiar with special input delimiters? How are they used?
Identify statements whose placement in the DATA step is critical?