Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
10answers
3k views

C# Why are timer frequencies extremely off?

Both System.Timers.Timer and System.Threading.Timer fire at intervals that are considerable different from the requested ones. For example: new System.Timers.Timer(1000d / 20); yields a timer that ...
3
votes
2answers
249 views

Statistical Stock Scanner in Mathematica

my goal is to write an algorithm in Mathematica that will search for stocks whose current price is trading below or above 2 Standard Deviations of the Mean. I literally started to learn the program ...
3
votes
2answers
88 views

How to detect deviations in a sequence from a pattern?

i want to detect the passages where a sequence of action deviates from a given pattern and can't figure out a clever solution to do this, although the problem sound really simple. The objective of ...
2
votes
2answers
224 views

Need guidance with logic programming in Python

I have been struggling to create 2 very small logic applications in Python. I am very new to programming and could definitely use some of your guidance, as this would possibly be very easy to someone ...
2
votes
3answers
2k views

Calculating moving average/stdev in SAS?

Hye guys, I included a screenshot to help clarify my problem: http://i40.tinypic.com/mcrnmv.jpg. I'm trying to calculate some kind of moving average and moving standard deviation. The thing is I ...
1
vote
1answer
33 views

Calculating Covariance Martrix of Two Distribution In Python

I would like to calculate the Covariance matrix of two distributions, what could be the possible ways to calculate them in python?
1
vote
0answers
206 views

Is standard deviation related to correlation coefficient? [closed]

I'm working on a small test. Suppose there are two time series(length is 10 for example), one of them has standard deviation 1 and the other is 5. Now the question is: Is the correlation coefficient ...
1
vote
1answer
377 views

Problem finding standard deviation and population variance correctly using Fortran

I couldn't find much when I searched for standard deviations and population variances on fortran 95. So I'm wondering if someone could help me? Thanks for your time. Here is what I did, it compiled ...
1
vote
3answers
202 views

filter out deviating record with sql

We have this set of data that we need to get the average of a column. a select avg(x) from y does the trick. However we need a more accurate figure. I figured that there must be a way of filtering ...
0
votes
0answers
21 views

Calculate average of a set numbers with reported standard errors [migrated]

I have 365 daily measurements that all have standard errors associated with them. Date | Prediction | Standard Error ----------------------------------------- Jan-01-2003 | ...
0
votes
2answers
459 views

5.21** Java: Statistics: computing mean and standard deviation

In business applications, you are often asked to compute the mean and standard deviation of data. The mean is simply the average of the numbers. The standard deviation is a statistic that tells you ...