insidedata.blogspot.com
Inside Data: SAS plus
http://insidedata.blogspot.com/2007/07/sas-plus.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Friday, July 27, 2007. The following is the complete SAS code to generate the animated GIF and an HTML file that references it. You should notice the following:. 8226; The following statement. Is included before the second invocation of PROC GCHART so that the output is appended to the same GIF file. Input Year Quarter Country $ Product $ Actual dollar10.2;. Label Actual = 'Actual Sales';. 1993 1 CANADA BED $4,337.00. 1993 3 GER...
insidedata.blogspot.com
Inside Data: Martingle
http://insidedata.blogspot.com/2007/08/martingle.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Thursday, August 23, 2007. The concept of martingale in probability theory was introduced by Paul Pierre Lévy, and much of the original development of the theory was done by Joseph Leo Doob. Part of the motivation for that work was to show the impossibility of successful betting strategies. E(Xn 1 X1,.,Xn)= Xn,. E(Yn 1 X1,.,Xn) = Yn. For more details, Please click MARTINGLE. Subscribe to: Post Comments (Atom). SAS : Proc Reg.
insidedata.blogspot.com
Inside Data: SAS - 1 : Data Step
http://insidedata.blogspot.com/2007/05/sas-1-data-step.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Friday, May 11, 2007. SAS - 1 : Data Step. Learn to use the DATA statement. Learn to use the INPUT statement. Learn to use the CARDS statement. Learn how to use the semicolon (;). Learn how to include TITLES on your output. Learn how to run a SAS program. Names the SAS data set. A temporary SAS data set named SOMENAME. The DATA statement signals the beginning of a DATA step. The general form of the SAS DATA statement is:. If the...
insidedata.blogspot.com
Inside Data: September 2007
http://insidedata.blogspot.com/2007_09_01_archive.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Saturday, September 22, 2007. The PROC SQL ends with the "QUIT;" statement. Individual SQL statements are located between "PROC SQL;" and "QUIT;". Logical: AND, OR, NOT. Var LIKE "b%"; / beginning with b or B. Var LIKE "%ent"; / ending with "ent". Var LIKE "%Hun%"; / containing "Hun". Var LIKE "- - - -"; / containing seven characters. LIKE: "WHERE name LIKE 'P%'"; "WHERE name LIKE ' k'";. IN: "WHERE year (1987, 1991, 1993);.
insidedata.blogspot.com
Inside Data: May 2011
http://insidedata.blogspot.com/2011_05_01_archive.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Tuesday, May 10, 2011. IPL Share Holding Pattern. Owner : KPH Dreams Cricket Pvt Ltd. Shareholders as on 30 June 2008. And Colway Investment Ltd share. Office space with Dabuar Group promoter owned entities. Owner : Jaipur IPL Cricket Pvt Ltd. Is completely owned by EM sporting Holdings, a Mauritius based company. Owner : Indinwin Sports Pvt Ltd. Shareholders as on 30 August, 2008. Knight Riders Sports Pvt Ltd. Owner : UB Group.
insidedata.blogspot.com
Inside Data: August 2007
http://insidedata.blogspot.com/2007_08_01_archive.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Thursday, August 23, 2007. The concept of martingale in probability theory was introduced by Paul Pierre Lévy, and much of the original development of the theory was done by Joseph Leo Doob. Part of the motivation for that work was to show the impossibility of successful betting strategies. E(Xn 1 X1,.,Xn)= Xn,. E(Yn 1 X1,.,Xn) = Yn. For more details, Please click MARTINGLE. Wednesday, August 22, 2007. SAS Output : Proc reg.
insidedata.blogspot.com
Inside Data: IPL Share Holding Pattern
http://insidedata.blogspot.com/2011/05/0-diggs-digg-share-0-preity-zinta-kings.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Tuesday, May 10, 2011. IPL Share Holding Pattern. Owner : KPH Dreams Cricket Pvt Ltd. Shareholders as on 30 June 2008. And Colway Investment Ltd share. Office space with Dabuar Group promoter owned entities. Owner : Jaipur IPL Cricket Pvt Ltd. Is completely owned by EM sporting Holdings, a Mauritius based company. Owner : Indinwin Sports Pvt Ltd. Shareholders as on 30 August, 2008. Knight Riders Sports Pvt Ltd. Owner : UB Group.
insidedata.blogspot.com
Inside Data: July 2007
http://insidedata.blogspot.com/2007_07_01_archive.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Friday, July 27, 2007. The following is the complete SAS code to generate the animated GIF and an HTML file that references it. You should notice the following:. 8226; The following statement. Is included before the second invocation of PROC GCHART so that the output is appended to the same GIF file. Input Year Quarter Country $ Product $ Actual dollar10.2;. Label Actual = 'Actual Sales';. 1993 1 CANADA BED $4,337.00. 1993 3 GER...
insidedata.blogspot.com
Inside Data: SAS/SQL
http://insidedata.blogspot.com/2007/09/sassql-basics-basic-rules-proc-sql-ends.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Saturday, September 22, 2007. The PROC SQL ends with the "QUIT;" statement. Individual SQL statements are located between "PROC SQL;" and "QUIT;". Logical: AND, OR, NOT. Var LIKE "b%"; / beginning with b or B. Var LIKE "%ent"; / ending with "ent". Var LIKE "%Hun%"; / containing "Hun". Var LIKE "- - - -"; / containing seven characters. LIKE: "WHERE name LIKE 'P%'"; "WHERE name LIKE ' k'";. IN: "WHERE year (1987, 1991, 1993);.
insidedata.blogspot.com
Inside Data: SAS : Proc Reg
http://insidedata.blogspot.com/2007/08/sas-proc-reg.html
Analyzing past for future . SAS Tutorial and Statistical Analysis Technique. Wednesday, August 22, 2007. SAS : Proc Reg. Proc Reg : Regression procedure. The REG procedure fits least-squares estimates to linear regression models. The following statements are used with the REG procedure:. PROC REG options;. MODEL dependents=regressors / options;. PLOT yvariable*xvariable = symbol . RESTRICT linear equation,. TEST linear equation,. MTEST linear equation,. PROC REG options;. Names the SAS data set to be use...