The SAS language is a 4GL that underpins the SAS system, a suite of products centered around data processing and statistical procedures.

learn more… | top users | synonyms

-5
votes
0answers
12 views

PROC FREQ AND CREATING VARIABLES IN SAS

Help me - calculate Cochran-Mantel-Haenzel, Chi-square and corresponding p-value. The output data set must have variables names: cmh_chi for Cochran-Mantel-Haenzel Chi-square and cmh_p for p value of ...
1
vote
1answer
20 views

Does the prompt manager escape characters?

I am working on a SAS program and I created a prompt which should allow a user to enter a comma separated list of values. The values are then used in a WHERE IN clause. The problem is that the prompt ...
-1
votes
0answers
16 views

HYPOTHESIS TESTING IN SAS

msb = 70 msa = 85 sd = 225 r = 0.81 msb - denotes mean score before coaching, msa - denotes mean score after coaching sd - denotes sample standard deviation of the difference between ...
0
votes
2answers
38 views

Join tables based on lagged date

I need to perform a LEFT JOIN to bring in a variable from table B to A by joining on the date with the new variable in Table B having a lagged date of the date in Table A: Table A: Date Var1 ...
-1
votes
2answers
40 views

Finding closest date to a specified date in sas dataset?

Based on the data could anyone assist me - making a program that contains test_date closest to delivery_date. delivery_date 11/16/2011 test_date 21/nov/2011 ...
0
votes
2answers
29 views

How can I rearrange this table using SAS or MS-Access?

I have a dataset on Microsoft Access and SAS of about a million option prices arranged with the following fields/columns: DATE, COMPANY, PUT/CALL, PRICE The PUT/CALL variable is an indicator ...
0
votes
1answer
21 views

How to create an excel file with sas variables

SAS code: To create an excel file for the youngest child that contains (first name, DOB and name). last name first name DOB of Child Name of Child Brian Geogg 20-Nov-97 ...
2
votes
1answer
27 views

SAS function that will only use non-missing values for a variable?

I am trying to create a new variable that is the sum of other variables. Should be simple enough, however if one of the variables that is being used in the calculation of the new variable has a ...
0
votes
1answer
22 views

How to pass macro variable to PROC SQL on IN statement in WHERE clause on MS SQL Server

I have a table in MS SQL Server that looks like: ID, Code 01, A 02, A 03, B 04, C ... and is defined in SAS as LIBNAME MSSQLDB ODBC CONNECTION=SHAREDREAD COMPLETE='Description=OIPE DW ...
-2
votes
0answers
24 views

SAS ID assignment using 2 variables [closed]

How do I assign ID numbers based on combination of two variables, "customer" and "preference". ID is a count of how many "preference" for each "customer". If one "customer" has two or more records ...
0
votes
3answers
28 views

Recursive command across variables in SAS

How do I apply an if statement to a large number of variables without having to rewrite the condition. For example, suppose I have a set of variables sex, age, height ... (about 60 variables) and I ...
0
votes
0answers
31 views

I want to determine within a if statement all the columns devisable by three, without having to do it individually

Using sas data integration 3.4, I've used proc contents with the varnum option to arrange columns numerically. Now within an IF Statement i would like to determine all the columns devisable by 3 using ...
1
vote
0answers
11 views

SAS Data Integretation Studio : error if lookup returns multiple values

Currently, in our DI studio job we have a couple of lookups. When one of these lookups for a certain record returns multiple values, the lookup will choose one of them (I think the first one) to ...
1
vote
2answers
43 views

Unable to log in with Jboss

Am getting the following error message in my browser, after installing RMfI (HF10): HTTP Status 404 - /SASLogon/index.jsp ...
0
votes
3answers
49 views

Data Masking in SAS: Scrambling Sensitive observations at character level

I'm working with client data in SAS with sensitive customer identification information. The challenge is to mask the field in such a way that it remains numeric/alphabetic/alphanumeric. I found a way ...
0
votes
3answers
16 views

Proc Tabulate in SAS: repeating class names for each row

If I want to summarize my data by class1 and class2 and show the sum of var1, what's the simplest code to get an output that looks like: Class1 Class2 Var1Sum a x 123 a ...
0
votes
0answers
50 views

pass sas macro variables to VB script as parameters

Below is the SAS code used to do forecasting and then create a excel output, once the output is stored in the excel file, i call a VBA macro to generate a graph for each excel file and for each sheet ...
2
votes
1answer
28 views

New table into Oracle db via SAS, lock table while writing

Can I lock for all access (including Oracle based queries) a table in an Oracle db via a SAS ODBC connection? I am currently running a script in SAS which drops and replaces a table in an Oracle db ...
0
votes
1answer
46 views

GIT GUI client on Windows for Unix GIT installation

Our company programs and runs data analysis on a Linux server. The programming is done in Windows clients (SAS, generally). Each project is only programmed by one person and is reviewed by another. ...
-1
votes
0answers
57 views

Different results from SAS PROC MIXED procedure and R lme function [closed]

I have 3(treatment)x3(period)x6(sequence) crossover design data. I have used SAS PROC MIXED procedure and I got the results with following code: data cross; input yield id treatment period sequence; ...
0
votes
1answer
28 views

SAS reading data from file containing tab and comma delimiters

So the problem is that tab delimiter is defined as '09'x , and comma - ",". I know that you can use multiple delimiters if you have for e.g. colon and comma and define it as ":," but i dont know how ...
0
votes
1answer
30 views

Why does SGPLOT ignore my `MarkerSymbol` choices?

I'm creating a VLine plot with Proc SgPlot, with 4 groups of data. Here is my code to create the plot. (I've genericized the variable names, of course.) This is wrapped in a macro, but I don't think ...
2
votes
2answers
109 views

VBA - open excel, find and replace, delete row, save as csv

I am trying to write a program in VBA so that I can remotely manipulate an excel file from SAS (a statistical programming software). I want the program to accomplish the following: open the ...
0
votes
1answer
27 views

SAS - Execute Find and Replace in an Excel File via DDE

I am trying to write a SAS program to do a find and replace in an excel file via DDE. Specifically, I am trying to search the header row for spaces between the strings (i.e., " ") and replace them ...
0
votes
0answers
38 views

How to get a file name currently being read into SAS?

%sysget(SAS_EXECFILENAME) and %sysget(SAS_EXECFILEPATH) are about the SAS program submitted but what about the data file itself? I use INFILE statement in DATA step and Filename= and others ...
-1
votes
0answers
39 views

Market Research- Data Analyst career [closed]

i am working in an Market research industry from last 2 years as Data Analyst and working on the SPSS tool to do data validation, modification, recoding, stacking etc.. could anyone suggest me what to ...
0
votes
1answer
31 views

Summary function in HAVING clause in SAS

I have the following query which returns a customer's username, the year and half-year, a count of bets for the first semi-year, a count of bets for the second semi-year and a profit calc. proc ...
1
vote
1answer
15 views

SAS - XML Libname Engine does not support processing of Data Type Definitions (DTD)

A simple question and I'm hoping for an easy answer. I'm running a program in SAS and I'm getting the following warning: WARNING: DOCTYPE element encountered. The SAS XML Libname Engine does ...
0
votes
1answer
17 views

Fill the blank values of a variable with the previous non blank value SAS 9.3

I'm using a dataset which is something like : +----------+--------+-------+ | Variable | Level | Value | +----------+--------+-------+ | sexe | men | 10 | | | female | 20 | | ...
0
votes
1answer
25 views

SAS: Using a Loop for Creating Many Data Sets and renaming the variables in them

I would be very happy if you could help me with the following task: I have a dataset in a long format as e.g.: time subject var1 var2 var3 1 1 0.41 0.48 0.85 2 1 0.58 0.38 ...
1
vote
2answers
31 views

Define macro upon initially opening SAS

I ran across a really nice macro I'd like to use as a hotkey: %macro closevts / cmd; %local i; %do i=1 %to 20; next "viewtable:"; end; %end; %mend; dm "keydef F12 '%NRSTR(%closevts);"; ...
1
vote
1answer
30 views

SAS server: How to get machine name of client machine?

I am running SAS Enterprise Guide on my PC to connect to a SAS instance on a server that is located within our network. I am writing a SAS program that will run on the server which will use ODS to ...
0
votes
2answers
19 views

Sas command to set VT Keys

In sas there appear to be multiple sets of keys "KEYS < VT >" (viewtable) and "KEYS < DMKEYS >" I can use the following command to set DMKEYS: dm "keydef F9 'submit'"; But it only sets ...
0
votes
1answer
32 views

SAS Dates - SEMIYEAR in Proc SQL

The following works fine for me, as I want to select the YYYYQ value for a column to show the year and quarter: proc sql; select YYQ(year(datepart(betdate)) , QTR(datepart(betdate))) ...
1
vote
1answer
34 views

how to print odd numbered observations from a dataset SAS

I have i simple question, that I unfortunately cannot seem to solve myself. How to print only observations with an odd observation number from a data set? Kind Regards Maria
0
votes
2answers
17 views

creating datasets with input values in different formats

Can a dataset be created with the following date values which are in different formats? 29 JUN 66 July0100 19940421
0
votes
1answer
31 views

sas pattern matching with square brackets evaluation

I have the following SAS code that checks for patterns and flags any error. I'm sure that it checks for a pattern in field1, but I'm not sure how two square brackets [] are evaluated. I need to ...
0
votes
2answers
29 views

Contingency table in SAS

I have data on exam results for 2 years for a number of students. I have a column with the year, the students name and the mark. Some students don't appear in year 2 because they don't sit any exams ...
0
votes
0answers
16 views

Creating a cluster using SAS proc cluster

I am trying to see the number of clusters I should take of a variable mag which relates to the magnitude of an earthquake. The issue is that I would like to classify mag taking into account the ...
0
votes
2answers
58 views

How to extract zipcode from very meshy string using regular expression in SAS?

I am trying to extract 5 number zipcode from the address field. I have included the sample data (see below). The data has 5 digit street fields in the beginning, and also 5 digit PO Box number in the ...
0
votes
3answers
39 views

SAS Do Over Macro - Backwards

I am using the Macro Arrays and Do Over Macro. I would like to rewrite this code with a do over macro: if mysequence > 4 then grammar_last_5 = grammar_last_4; if mysequence > 3 then ...
0
votes
1answer
29 views

PARTSIZE option for SAS SPD datasets

I've noticed that when I specify the partsize option when creating SPD datasets in SAS9.3 Win7 64bit it doesn't seem to work as intended. I'm using a simple SPDE libname with no additional ...
0
votes
1answer
44 views

searching and matching observations in single dataset with sas

I have data like this, external-id M1 M2 M3 M4 M5 VAR1 VAR2 VAR3 VAR4 VAR5 P1 AA AG ZZ -/- GG P2 AA AA AA GG GG I want to see both P1 and P2 contains same data or not, if same I ...
0
votes
1answer
65 views

How to calculate probit in C++

I'm converting some SAS code into C++ but currently stuck on how to calculate the probit function. I believe I've found the probit formula (http://en.wikipedia.org/wiki/Probit) but my statistics ...
3
votes
3answers
63 views

Convert to a SAS Time

I have a txt file containing time in this format 161058.262 which is intended to be 16:10:58.262. I cannot find an INFORMAT that will turn this value into the correct SAS numeric time value. ...
1
vote
1answer
48 views

how to use lag function in the calculation in sas

I"m lost with lag function; Here below is what I'm trying to do. data out; set in; by a; y = 0.5 ; y = lag(y) * ( 1 - x); end; run; "in" table only have X and sequence value A ,What I ...
0
votes
1answer
48 views

Order of data displayed in a SAS proc GCHART HBAR statement

I have the following, but I wish to control the order in which the data is displayed. Instead of displaying the bars in the order of A, B, C, D, E, F, I wish to display the bars based on a ...
3
votes
1answer
45 views

Explain the order in which SAS reads data step (conceptual)

I need to understand how SAS reads/executes data steps. When I've looked up info on how SAS reads data steps, all I seem to find is info on how it reads for merging purposes, which i don't understand ...
0
votes
1answer
38 views

Calculate how many variable

i want to Calculate how many variable and out put in log i want use do loop this is my Program %PUT _USER_; OPTIONS MPRINT; %MACRO varnum(a); data d; array a &a. ; %do i=1 %to ...
1
vote
3answers
40 views

How to validate group of values in column B comparing to values from column A

I need to validate that a specific rule is applied for a table. Rule = all options (column OPTION_REF) linked to 1 customer (CUSTOMER_NR) should be identical (Remark: customers can have 1 to 800 ...

1 2 3 4 5 24