* Author: Dr. Jörg Michael Müller, Uni Tübingen, 07071-2978353; * Adress: Friedrichstrasse 21, 72072 Tübingen, Germany * Email: JMMueller@uni-tuebingen.de * 1. Website: http://www.JoergMMueller.de/default.htm * 2. Website: http://www.psychological-tests.de * * Content: SAS-Macro to read Winmira output file; * Additional information about the macro could be retrieved from the following papers: * * Reference: PLEASE CITE IF YOU USE THE PROGRAM: * Müller, J. M. (2005). SAS MACROS TO COMPUTE THE PROBABILITY OF DISTINCT TEST RESULTS. Applied Psychological Measurement; * Müller, J. M. (2005). The Probability of Obtaining Two Statistically Different Test Scores as a Basic Test Characteristic. Educational and Psychological Measurement. * * Table of Contents: * Name of Macro * Function: *******************************************************************************************; * %ReadWinPP(filepath); * Rearrange the SPSS-Winmira output file; %ReadWinPP(YOURPATH\Win_test.por) %macro ReadWinPP(filepath); filename f "&filepath"; proc convert spss=f out=file1; data file; set file1; if PERSPARA=. then delete; if STDERR=. then delete; rename STDERR=SEM; run; %mend ReadWinPP;