The Elsmar Cove Wiki More Free Files The Elsmar Cove Forums Discussion Thread Index Post Attachments Listing Failure Modes Services and Solutions to Problems Elsmar cove Forums Main Page Elsmar Cove Home Page


Go Back   The Elsmar Cove Forum > Blogs > reynald
Forum Username


Rating: 1 votes, 4.00 average.

Visualizing Sigma

Submit "Visualizing Sigma" to Facebook Submit "Visualizing Sigma" to Digg Submit "Visualizing Sigma" to Google Submit "Visualizing Sigma" to StumbleUpon
Posted 6th August 2009 at 08:01 PM by reynald

/*
This is again for the JMP users out there.

Lately I have been noticing that whenever I am conducting trainings, it helps when the participants have a way to visualize the concepts that are being presented to them. In a recent example I was asked what is the basis of the value 6 in the Pp formula (USL-LSL)/(6*StdDev). Here is JMP JSL script that illustrates the logic behind the value 6.

A sample window is shown below. It is interactive. After showing this, you may then explain that the sigma is equivalent to distance from the center to the point of inflection on a normal curve,and you can fit about 6 of this length from one end of the curve to the other end. The output window is like this:

Visualizing Sigma.bmp


Note: You can freely use and share this script. I would be grateful though if you would give credit to me and point to this forum as the source.

Regards,
Reynald Francisco
*/






Clear Globals();



//Define constants
rsqrt2pi = 1 / Sqrt( 2 * Pi() );
e = e();
//Define intial average
//Define initial Sigma within
//Get user information through a dialog box

dlg = Dialog(
"VISUALIZING SIGMA: A DEMOSTRATION",
" ",
"Enter the following information to begin, then click on OK",
" ",
V List(
V List(
" Population parameter:",
"",
Line Up( 2,
" Mean", mu = Edit Number( 0 ),
" Standard Deviation", sigma = Edit Number( 1 )
),
"",

)
),

" ",
H List( Button( "OK" ), Button( "Cancel" ) )
);


If( dlg["Button"] == -1,
Throw( "User cancelled" )
);
Remove From( dlg );
Eval List( dlg );


//Define the output window
OUT_WINDOW = New Window( "VISUALIZING SIGMA: A JMP JSL DEMOSTRATION",
Border Box(
TOP( 5 ),
Left( 5 ),
Panel Box( "VISUALIZING SIGMA",
V List Box(
T1=Text Box( "Move the slider below to adjust the Sigma." ),
T2=Text Box( "Move the handle of the curve to adjust the Mean" ),
NormCurve = Graph Box(
FrameSize( 500, 350 ),
Y Scale( 0, 1.40 * rsqrt2pi / sigma ),
X Scale( mu - 10 * sigma, mu + 10 * sigma ),
Double Buffer,
Pen Color( "red" );
Text Color( "red" );
Text( {mu + 1 * sigma, rsqrt2pi / sigma * e ^ (-1 / 2)}, "Sigma = ", sigma );
LINEMATRIX_X = {mu, mu + sigma};
LINEMATRIX_X = Matrix( LINEMATRIX_X );
LINEMATRIX_Y = {rsqrt2pi / sigma * e ^ (-1 / 2), rsqrt2pi / sigma * e ^ (-1 / 2)
};
LINEMATRIX_Y = Matrix( LINEMATRIX_Y );
Arrow( LINEMATRIX_X, LINEMATRIX_Y );
LINEMATRIX_X1 = {mu + sigma, mu};
LINEMATRIX_X1 = Matrix( LINEMATRIX_X1 );
LINEMATRIX_Y1 = {rsqrt2pi / sigma * e ^ (-1 / 2), rsqrt2pi / sigma * e ^ (-1 / 2)
};
LINEMATRIX_Y1 = Matrix( LINEMATRIX_Y1 );
Arrow( LINEMATRIX_X1, LINEMATRIX_Y1 );
Pen Color( "blue" );
Text Color( "blue" );
Pen Size( 2 );
Text Color("BLUE");
Text({mu,rsqrt2pi / sigma},"----->Mean = ", char(round(mu,3)));
Y Function( Normal Density( (x - mu) / sigma ) / sigma, x );
Pen Size( 1 );
Pen Color("Green");
V Line( mu, 0, rsqrt2pi / sigma );
Line Style( 2 );
//V Line( mu + sigma, 0, rsqrt2pi / sigma * e ^ (-1 / 2) );
V Line( mu + 2 * sigma, 0, rsqrt2pi / sigma * e ^ (-4 / 2) );
V Line( mu + 3 * sigma, 0, rsqrt2pi / sigma * e ^ (-9 / 2) );
V Line( mu - sigma, 0, rsqrt2pi / sigma * e ^ (-1 / 2) );
V Line( mu - 2 * sigma, 0, rsqrt2pi / sigma * e ^ (-4 / 2) );
V Line( mu - 3 * sigma, 0, rsqrt2pi / sigma * e ^ (-9 / 2) );
Pen Color( "Red" );
ARROW_MAT_X={mu + sigma, mu + sigma};
ARROW_MAT_Y={ rsqrt2pi / sigma * e ^ (-1 / 2),0};
ARROW_MAT_X=MATRIX(ARROW_MAT_X);
ARROW_MAT_Y=MATRIX(ARROW_MAT_Y);
ARROW(ARROW_MAT_X,ARROW_MAT_Y);
Handle( mu, rsqrt2pi / sigma, mu = x );
),


H List Box(
Text Color( "BLUE" );
T3 = Text Box( "SIGMA VALUE" );,
SB1 = Slider Box( 0.5 * sigma, 10 * sigma, sigma, NormCurve << reshow ),
Text Box( " " )
);

)
) //END OF PANEL BOX
) //END OF BORDER BOX
);
T1 << Font color( "BLUE" );
T1 << set Font size( 10 );
T2 << Font color( "BLUE" );
T2 << set Font size( 10 );
T3 << Font color( "RED" );
T3 << set Font size( 12 );
T3<< Set Font Style ("BOLD");
Show( NormCurve );
NormCurve << reshow;
Total Comments 1

Comments

  1. Old Comment
    Marc's Avatar
    Thanks for posting this. We appreciate it!
    Posted 4th February 2012 at 12:15 PM by Marc Marc is online now
 
Total Trackbacks 0

Trackbacks


Do you find this blog post helpful and informational?




The time now is 01:31 AM. All times are GMT -4.
Your time zone can be changed in your UserCP --> Options.


   


Marc Timothy Smith - Elsmar.com
8466 LeSourdsville-West Chester Road, Olde West Chester, Ohio 45069-1929
513 341-6272