Standard deviation (represented by the symbol sigma, σ) shows how much variation or "dispersion" exists from the average (mean, or expected value).

learn more… | top users | synonyms

0
votes
1answer
23 views

What is the purpose of boost accumulator error_of<mean>?

The documentation of the error_of< mean > feature for boost accumulators states that it calculates the error of a mean value by the formula: sqrt(variance / (count - 1)), where the variance is ...
0
votes
2answers
36 views

mean and sd of the day in R with xts

again I do have my df in xts and don't have names! (as far as I know there is no name anymore when setting as.POSIXct()): "2012-04-09 05:00:00",2 "2012-04-09 09:00:00",4 "2012-04-09 ...
1
vote
1answer
66 views

Generating a standard deviation plot from a row in a JTable

I am trying to create a JTable that I can be able to click on a row and it will display a standard deviation curve. Here is what my JTable looks like right now. So for example, the standard ...
4
votes
2answers
144 views

Change row values to zero if less than row standard deviation

I want to change all values of a row to zero if they are less than the standard deviation of that row. set.seed(007) X <- data.frame(matrix(sample(c(5:50), 100, replace=TRUE), ncol=10)) X1 X2 ...
0
votes
2answers
71 views

Weighted Standard Deviation

Hi I want to calculate weighted standard deviation in SQL Server 2012. Is there any inbuilt function as of standard deviation in SQL Server or how to built a user define function in SQL Server.
0
votes
3answers
77 views

standard deviation arraylist error

I am getting an error when I try to retrieve the individual values to find the variance in the process of calculating the standard deviation. I can't figure out whether to use .get() or .getValue and ...
0
votes
1answer
61 views

Finding the mean and standard deviation of a data column in OpenOffice Calc

I have several data columns with 400 to 500 entries in each in a Calc spreadsheet. For each of these columns, I would like simply to be able to find the mean and standard deviation, but don't know how ...
0
votes
2answers
41 views

take standard deviation of datetime in python

I am importing the datetime library in my python program and am taking the duration of multiple events. Below is my code for that: d1 = datetime.datetime.strptime(starttime, '%Y-%m-%d:%H:%M:%S') d2 = ...
0
votes
2answers
73 views

calculating standard deviation results index exceeds matrix dimention error

i am calculating standard deviation of 250x250 image but i am getting following error can anyone help please.. 210.2683 ??? Index exceeds matrix dimensions. Error in ==> test at 5 ...
0
votes
1answer
57 views

plot error bars

Is there a function in R that does the following thing: Taken c(10,11,20,22,30,31) and c(1,1,2,2,3,3) plot the mean of 10 and 11 in position 1 on the x axis, the mean of 20 and 22 in position 2 on ...
0
votes
0answers
9 views

Using interactive mode in excel: How to average and std on a single changing cell?

I am using Excel on iterative model and want to calculate the average of a cell that changes automatically. For example how to create a counter and calculate its average and std in interactive mode?
1
vote
1answer
85 views

Using the cell value as the cell range for calculation

I am new to VBA. I am presently working on a validation tool already built by my predecessor. The issue I want clarification on is selecting the cell range based on the result of a formula in another ...
0
votes
0answers
16 views

How to get SAMPLE standard deviation with boost library?

Here is what I did : accumulator_set<double, stats<tag::variance> > accumulator; accumulator = for_each(x.begin(), x.end(), accumulator); double sDeviation = sqrt(variance(accumulator)); ...
11
votes
1answer
229 views

haskell - Average floating point error using QuickCheck

I am using QuickCheck-2.5.1.1 to do QA. I am testing two pure functions gold :: a -> Float and f :: a -> Float, where a instances Arbitrary. Here gold is a reference calculation and f is a ...
2
votes
3answers
221 views

Removing outliers easily in R

I have data with discrete x-values, such as x = c(3,8,13,8,13,3,3,8,13,8,3,8,8,13,8,13,8,3,3,8,13,8,13,3,3) y = c(4,5,4,6,7,20,1,4,6,2,6,8,2,6,7,3,2,5,7,3,2,5,7,3,2); How can I generate a new ...
1
vote
1answer
46 views

standard deviation of an arbitrary number of numbers using bc or other standard utilities

Is there some trick that would allow one to use bc (or some other standard utility) to return the standard deviation of an arbitrary number of numbers? For convenience, let's say that the numbers are ...
0
votes
1answer
229 views

Find the mean and standard deviation of all values in a data frame

I have a set of data frames each with different column names, e.g. frameOne looks like Q2 Q6 Q9 1 1 0 0 2 0 1 1 ... N 1 1 0 and frameTwo is Q1 Q5 Q9 Q22 1 1 1 0 ...
2
votes
3answers
862 views

Add bars for standard deviation to a plot in R

For each X-value I calculated the average Y-value and the standard-deviation (sd) of each Y-value x = 1:5 y = c(1.1, 1.5, 2.9, 3.8, 5.2) sd = c(0.1, 0.3, 0.2, 0.2, 0.4) plot (x, y) How can I add ...
0
votes
3answers
587 views

How to efficiently calculate a moving Standard Deviation

Below you can see my C# method to calculate Bollinger Bands for each point (moving average, up band, down band). As you can see this method uses 2 for loops to calculate the moving standard deviation ...
0
votes
0answers
46 views

Select Data with minimum Standard Deviation

I have 50 rows of data as follows, I want to select 16 of them which will have minimum standard deviation. The order of preference is PRI, P0, then VM. Any help will be highly appreciated. PALLET ...
2
votes
1answer
180 views

creating a chart showing mean and standard deviation in java

I'm new to Jfreechart and swing and was trying to create a single graph showing both mean (as line chart) and standard deviation (as whiskers), but failed so far. I'm trying to make the graph look ...
1
vote
2answers
106 views

How to compute a threshold for a given vector/array of float numbers

Say I have the following example distribution (vector) of numbers in c++: vector 1 vector 2 vector 3 11 4 65 128 6 66 12 4 64 13 4 ...
0
votes
0answers
137 views

Calculating Standard Deviation of a Bernoulli Trial

I was hoping that someone might be able to help me out with some slight confusion regarding calculation of the standard deviation for a Bernoulli Trial. Definitionally, I understand a Bernoulli Trial ...
1
vote
2answers
111 views

Finding the standard deviation of a list of deviations/elements

I have a list of sets and some basic statistics for each one (number of items, min, max, mean, stddev). I would like to calculate the same statistics for all of the sets combined. Calculating the ...
0
votes
2answers
212 views

MySQL: Standard deviation avarage within a table

Here's how one of my tables are structured: id | group | val1 | val2 | val3 1 | 1 | 22 | 23 | 60 2 | 1 | 40 | 60 | 80 3 | 2 | 50 | 5 | 70 4 | 2 | ... 5 | 2 | 6 ...
0
votes
0answers
39 views

how to find statistically best value from a set of values

I have built a human motion tracking system as my final thesis work. I used simple background subtraction algorithm and used threshold value for this background subtraction in a trial and error basis. ...
-2
votes
1answer
529 views

Standard deviation of combined data

I have a data set with mean values, standard deviations and n. One of the variables has an equal sample size, while the sample size for the other one varies. dat <- data.frame(variable = ...
0
votes
1answer
271 views

MATLAB error: “previously appeared to be used as a function or command”

I want to create a function called E7stats, which performs a simple statistical analysis on the scores of the first midterm, contained in a csv file. The function takes one string input, filename, ...
0
votes
1answer
1k views

How to plot a probability density function on a histogram?

My function called DicePlot, simulates rolling 10 dice 5000 times. In the function, it calculates the sum of values of the 10 dice of each roll, which will be a 1 × 5000 vector, and plot relative ...
1
vote
3answers
843 views

How to find standard deviation of image in MATLAB

I have an image and I want to find the standard deviation for each row of the image and I will use the SD value for each row to calculate average SD of the image. I know the function to find SD (std) ...
-2
votes
2answers
122 views

C++ writing multiple strings from a file

Quick question. I'm doing my portfolio C++ question for a uni assignment. It is standard deviation. My question is to do with reading multiple strings from a file, see text here; Design and write ...
0
votes
0answers
161 views

How to find variance of an array?

I need to find the variance of the array. My formula that I have is apparently wrong because I am not getting the correct answers. Can anyone help me? public static void main(String[] args) { ...
0
votes
1answer
161 views

How to compute intraclass standard deviation without loops in matlab?

I have a data set with n samples d features represented by a n*d matrix. The corresponding label is a n*1 vector. How can I compute each intraclass standard deviation without loops in matlab? For ...
1
vote
1answer
386 views

mean and standard deviation per bin in histogram

I have some code in R that produces a histogram in R about the frequency of different power(watts) values for a machine at different points in time. The histogram is divided in "n" number of bins ...
1
vote
2answers
531 views

Matlab - Standard Deviation of Cartesian Points

I have an array of cartesian points (column 1 is x values and column 2 is y values) like so: 308 522 307 523 307 523 307 523 307 523 307 523 306 523 How would I go about getting a standard ...
0
votes
1answer
157 views

Awk Rounding of Value Field Based on Significance of Second Rounded Field

I want to take the following input Average Box 1: 0.520522 Std. Dev. Box 1: 0.00297154 ...print the first number (the average) rounded to a certain digit, where that digit is defined by the first ...
1
vote
1answer
110 views

How do I transform an Inverse CDF coded for a standard deviation of one to a different STDDEV?

I am doing rejection sampling as part of an algorithm for numerical integration using an inverse cumulative distribution function (CDF). I found two possible implementations: In C and Java (and ...
0
votes
1answer
288 views

Using BigQuery to find outliers with standard deviation results combined with WHERE clause

Standard deviation analysis can be a useful way to find outliers. Is there a way to incorporate the result of this query (finding the value of the fourth standard deviation away from the mean)... ...
-1
votes
3answers
245 views

Barplot mean /w SD in R-Project

Sounds like a trivial one, but some research didn´t come up with an elegant solution: I have a dataframe structured with a categorial variable (GROUP) and a continuous read-out variable ...
1
vote
3answers
317 views

Standard deviation using CUDA

I am writing a code to find the mean and standard deviation of 6 vectors with 8000 elements each. I was wondering if I could do it using CUDA and speed up the operation. I could think of how to find ...
0
votes
1answer
130 views

Probability Density Function with Zero Standard Deviation

I am now implementing an email filtering application using the Naive Bayes algorithm. My application uses the Spambase Data Set from the UCI Machine Learning Repository. Since the attributes are ...
0
votes
0answers
161 views

How to Map Uniform Distribution Probability to Standard Deviation?

I've collected data on events that are suppose to happen in a uniform distribution according to a probability table. In actuality they deviate from the table. I've approximated their actual occurrence ...
0
votes
1answer
483 views

Finding standard deviation using only mean, min, max?

I want to find the standard deviation: Minimum = 5 Mean = 24 Maximum = 84 Overall score = 90 I just want to find out my grade by using the standard deviation Thanks,
2
votes
2answers
1k views

Online algorithm for calculating standard deviation

Normally, I have a more technical problem but I will simplify it for you with an example of counting balls. Assume I have balls of different colors and one index of an array (initialized to all 0's) ...
0
votes
2answers
579 views

For-loop to read multiple .csv files in Python

I started using Python and have the following problems here. Indentation Error with count +=1 and several other lines Not scanning all .csv files in a directory. When I run this script, it only ...
3
votes
1answer
319 views

R calculate sd of parts of a matrix/array

sorry to post this as I know this has come up before in various guises but I really don't understand what I am doing wrong/the inner-workings of R! I have an (multi dimensional) array of data that I ...
1
vote
1answer
242 views

LINQ to SQL - calling built-in aggregate functions (i.e. STDEV)

Is there any way to have LINQ translate queries directly to functions like SQL's STDEV? For example, the LINQ from t in table group t by t.something into g select new { avg = g.Average(o => ...
0
votes
1answer
556 views

c# draw a bell curve from a mean and a standard deviation

Is there a way to generate a Bell curve from a standard deviation and a mean? I have read reference to this but cant find an algorthym. I have a list of numbers, they are pre-normalised look ups ...
1
vote
1answer
1k views

OpenCV Mean/SD filter

I'm throwing this out there in hope that someone will have attempted something this ridiculous before. My goal is to take in an input image, and segment it based upon the standard deviation of a small ...
0
votes
1answer
342 views

solving standard deviation for a gaussian random variable

So lets assume I have a Gaussian random number generator that takes 2 parameters std deviation and mean, X(d,m). What I want to do is specify the std deviation for the number generator such that i get ...

1 2