Archive for October, 2009

z test p-value approach

Saturday, October 31st, 2009

http://www.youtube.com/watch?v=uVvWcFrrvsI&feature=player_embedded

Error Type (Type I & II)

Saturday, October 31st, 2009

http://www.youtube.com/watch?v=taEmnrTxuzo&feature=related

null hypothesis

Saturday, October 31st, 2009

http://www.youtube.com/watch?v=2esBiTHJf2M&feature=player_embedded#

http://www.youtube.com/watch?v=abjHpJ36pIE&feature=related

Protected: 20091030

Friday, October 30th, 2009

This post is password protected. To view it please enter your password below:


Protected: Public School

Friday, October 30th, 2009

This post is password protected. To view it please enter your password below:


Protected: 20091029

Thursday, October 29th, 2009

This post is password protected. To view it please enter your password below:


Protected: アーカイブ提案書

Wednesday, October 28th, 2009

This post is password protected. To view it please enter your password below:


What are the differences between z-distribution and t-distribution?

Tuesday, October 27th, 2009

The Z distribution is just a special case of the normal distribution, with an idealized mean of 0 and standard deviation of 1. This allows us to create a compact and useful table for all normal distributions — a very important property before the days of fancy calculators and computers.

The t distribution is similar to the Z distribution, but is sensitive to sample size and is used for small samples, or moderate size samples when the population standard deviation is unknown. It is little different from Z for large sample sizes.

How to retreive the line number and file name of C# source code

Tuesday, October 27th, 2009

        [Conditional(”DEBUG”)]
        public static void DebugPrintTrace()
        {
            StackTrace st = new StackTrace(true);
            StackFrame sf = st.GetFrame(1);
            Console.WriteLine(”Trace ”
                + sf.GetMethod().Name + ” ”
                + sf.GetFileName() + “:”
                + sf.GetFileLineNumber() + “\n”);
        }

Comparing the Averages of Two Independent Samples

Tuesday, October 27th, 2009

http://www.stat.wmich.edu/s216/book/node81.html