data a1; drop v1 v2 v3 v4; generator = 1; infile 'C:\projects\ramdomAnalysis\random08JUN2007_12.bin' recfm=n; input v1 PIB1. @@; input v2 PIB1. @@; input v3 PIB1. @@; input v4 PIB1. @@; value = ((256 * 256 * 256 * v1 + 256 * 256 * v2 + 256 * v3 + v4) / 4294967295) - 0.5; run; data a2; drop v1 v2 v3 v4; generator = 2; infile 'C:\projects\ramdomAnalysis\random08JUN2007_13.bin' recfm=n; input v1 PIB1. @@; input v2 PIB1. @@; input v3 PIB1. @@; input v4 PIB1. @@; value = ((256 * 256 * 256 * v1 + 256 * 256 * v2 + 256 * v3 + v4) / 4294967295) - 0.5; run; data a3; drop v1 v2 v3 v4; generator = 3; infile 'C:\projects\ramdomAnalysis\random08JUN2007_23.bin' recfm=n; input v1 PIB1. @@; input v2 PIB1. @@; input v3 PIB1. @@; input v4 PIB1. @@; value = ((256 * 256 * 256 * v1 + 256 * 256 * v2 + 256 * v3 + v4) / 4294967295) - 0.5; run; data a123; drop v1 v2 v3 v4; generator = 123; infile 'C:\projects\ramdomAnalysis\random08JUN2007_123.bin' recfm=n; input v1 PIB1. @@; input v2 PIB1. @@; input v3 PIB1. @@; input v4 PIB1. @@; value = ((256 * 256 * 256 * v1 + 256 * 256 * v2 + 256 * v3 + v4) / 4294967295) - 0.5; run; data all; set a1 a2 a3 a123; run; * data b; * infile 'C:\temp\ramdomAnalysis\random01.txt'; * input value; * run; * data c; * infile 'C:\temp\ramdomAnalysis\random01text.txt'; * input value; * run; proc univariate data=all plot; var value; by generator; run; *proc arima data=all; * identify var = value; * by generator; * run;