Difference between revisions of "LIST STAT STD DEV"

From Second Life Wiki
Jump to navigation Jump to search
(making the math work, the manual calculation method is good but it will include non float/integer types and scew the results, but perfection isn't always required)
m (<lsl> tag to <source>)
 
Line 4: Line 4:
|value=5
|value=5
|desc=Calculates the ''sample'' standard deviation of a list of numbers.
|desc=Calculates the ''sample'' standard deviation of a list of numbers.
<lsl>
<source lang="lsl2">
float sample_standard_deviation = llListStatistics( LIST_STAT_STD_DEV, numList );
float sample_standard_deviation = llListStatistics( LIST_STAT_STD_DEV, numList );
</lsl>
</source>
Standard deviation is a measure of how spread out the values are, and is defined as the square root of the average of the squares of the numbers:
Standard deviation is a measure of how spread out the values are, and is defined as the square root of the average of the squares of the numbers:
<lsl>
<source lang="lsl2">
integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
float standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / count;
float standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / count;
</lsl>
</source>
The sample standard deviation is used when the list doesn't (or can't) include the ''entire'' set of numbers, like the mass of ''every'' prim in SL. The true standard deviation is therefore estimated by using the sample standard deviation, which is defined by,
The sample standard deviation is used when the list doesn't (or can't) include the ''entire'' set of numbers, like the mass of ''every'' prim in SL. The true standard deviation is therefore estimated by using the sample standard deviation, which is defined by,
<lsl>
<source lang="lsl2">
integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
float sample_standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / (count - 1);
float sample_standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / (count - 1);
</lsl>
</source>
Another way to calculate the sample standard deviation is  
Another way to calculate the sample standard deviation is  
<lsl>
<source lang="lsl2">
     list numList = [1,1,1,2,1000,1000,1000];
     list numList = [1,1,1,2,1000,1000,1000];
     integer count = llGetListLength( numList );
     integer count = llGetListLength( numList );
Line 35: Line 35:
     llOwnerSay((string)llListStatistics( LIST_STAT_STD_DEV, numList ));
     llOwnerSay((string)llListStatistics( LIST_STAT_STD_DEV, numList ));
}
}
</lsl>
</source>
|pa
|pa
|text
|text
|pb
|pb
|example=
|example=
<lsl>
<source lang="lsl2">
list numList = [1,1,1,2,1000,1000,1000];
list numList = [1,1,1,2,1000,1000,1000];
float standard_deviation = llListStatistics( LIST_STAT_STD_DEV, numList );
float standard_deviation = llListStatistics( LIST_STAT_STD_DEV, numList );
llOwnerSay((string)standard_deviation);
llOwnerSay((string)standard_deviation);
</lsl>
</source>
|constants=
|constants=
<!--{{LSL ConstRow|CHANGED_SHAPE}}-->
<!--{{LSL ConstRow|CHANGED_SHAPE}}-->

Latest revision as of 16:00, 23 January 2015

Description

Constant: integer LIST_STAT_STD_DEV = 5;

The integer constant LIST_STAT_STD_DEV has the value 5

Calculates the sample standard deviation of a list of numbers.

float sample_standard_deviation = llListStatistics( LIST_STAT_STD_DEV, numList );

Standard deviation is a measure of how spread out the values are, and is defined as the square root of the average of the squares of the numbers:

integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
float standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / count;

The sample standard deviation is used when the list doesn't (or can't) include the entire set of numbers, like the mass of every prim in SL. The true standard deviation is therefore estimated by using the sample standard deviation, which is defined by,

integer count = (integer)llListStatistics( LIST_STAT_NUM_COUNT, numList );
float sample_standard_deviation = llSqrt( llListStatistics( LIST_STAT_SUM_SQUARES , numList ) ) / (count - 1);

Another way to calculate the sample standard deviation is

    list numList = [1,1,1,2,1000,1000,1000];
    integer count = llGetListLength( numList );
    float sum = 0;
    float mean = llListStatistics( LIST_STAT_MEAN, numList );
    integer i = 0;
    for (; i<count; ++i) {
        float val = llList2Float( numList, i );
        float diff = val - mean;
        sum += ( diff * diff );
    }
    float sample_stdev = llSqrt( sum / (count - 1) ); 
    float true_stdev = llSqrt( sum / count ); 
    llOwnerSay((string)true_stdev);
    llOwnerSay((string)sample_stdev);
    llOwnerSay((string)llListStatistics( LIST_STAT_STD_DEV, numList ));
}

Related Articles

Functions

•  llListStatistics

Deep Notes

Search JIRA for related Issues

Signature

integer LIST_STAT_STD_DEV = 5;