Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
439 views

Calculating moving average in C++

I am trying to calculate the moving average of a signal. The signal value ( a double ) is updated at random times. I am looking for an efficient way to calculate it's time weighted average over a ...
8
votes
5answers
979 views

Smoothing values over time: moving average or something better?

I'm coding something at the moment where I'm taking a bunch of values over time from a hardware compass. This compass is very accurate and updates very often, with the result that if it jiggles ...
7
votes
3answers
4k views

Running average in Python

Is there a pythonic way to build up a list that contains a running average of some function? After reading a fun little piece about Martians, black boxes, and the Cauchy distribution, I thought it ...
5
votes
3answers
1k views

C# LINQ to calculate a moving average of a SortedList<dateTime,double>

I have a time series in the form of a SortedList<dateTime,double>. I would like to calculate a moving average of this series. I can do this using simple for loops. I was wondering if there is a ...
4
votes
2answers
58 views

Algorithm for calculating the sum-of-squares distance of a rolling window from a given line function

Given a line function y = a*x + b (a and b are previously known constants), it is easy to calculate the sum-of-squares distance between the line and a window of samples (1, Y1), (2, Y2), ..., (n, Yn) ...
4
votes
1answer
69 views

rollapply time series in R (zoo) on backward looking data

I would like to use the zoo function rollapply to apply a function (for example mean) on a time series but only using the last N known points. For example: x = zoo(c(1,2,3,4), ...
4
votes
2answers
139 views

Numpy Root-Mean-Squared (RMS) smoothing of a signal

I have a signal of electromyographical data that I am supposed (scientific papers' explicit recommendation) to smooth using RMS. I have the following working code, producing the desired output, but ...
4
votes
2answers
348 views

Filtering compass readings

I'm using compass heading to rotate an MKMapView. The rotation was a bit jerky so I'm trying to filter it like Google Maps on the iphone does (or appears to do some trickery). I'm trying to filter ...
3
votes
3answers
94 views

Data structure/algorithm to efficiently save weighted moving average

I'd like to sum up moving averages for a number of different categories when storing log records. Imagine a service that saves web server logs one entry at a time. Let's further imagine, we don't have ...
3
votes
1answer
2k views

How do you use a moving average to filter out accelerometer values in iPhone OS

I want to filter the accelerometer values using a moving average, how is this done? Thanks
2
votes
7answers
265 views

Moving average/total algorithm

I need to keep track of the last 7 days work hours in a flat file reading loop. It's being used to measure 'fatigueability' of work rosters. Right now I have something that works, but it seems rather ...
2
votes
2answers
623 views

C# Calculation of moving median of time series SortedList<DateTime, double> - improve performance?

I have a method that calculates the moving median value of a time series. Like a moving average, it use a fixed window or period (sometimes referred to as the look back period). If the period is 10, ...
1
vote
2answers
54 views

Calculating moving-averages of variable parameters

I have an integer property which is updated every second with a signal-strength value ranging from 0 - 100. I'd like to be able to keep an ongoing measure of the moving average over the last 10, 25, ...
1
vote
2answers
118 views

Calculating moving average for values in a dictionary with keys in a specific range

So far this is my solution. I wonder if there is some more elegant/efficient way? import datetime as dt example = {dt.datetime(2008, 1, 1) : 5, dt.datetime(2008, 1, 2) : 6, dt.datetime(2008, 1, 3) : ...
1
vote
0answers
143 views

Efficient moving window statistics for matrix and/or spatial data (neighborhood statistics) in R

I'm using the raster and related packages in R to do a bit of remote sensing work. For a number of the functions I'm writing, I'd love to rapidly compute neighborhood / moving window statistics. ...
1
vote
2answers
383 views

10 period moving average in MySql without using date

I have a table of goalie data, snipet below year gameid player sv% gamenum 2009 200165 John Smith 0.923 0165 2009 209754 John Smith 1.000 9754 2009 206938 John Smith 1.000 ...
1
vote
1answer
437 views

Window moving average in sql server

I am trying to create a function that computes a windowed moving average in SQLServer 2008. I am quite new to SQL so I am having a fair bit of difficulty. The data that I am trying to perform the ...
1
vote
3answers
442 views

Efficient computation of “variable (number of points included)” moving average in R

I'm trying to implement a variable exponential moving average on a time series of intraday data (i.e 10 seconds). By variable, I mean that the size of the window included in the moving average depends ...
1
vote
5answers
202 views

How to best maintain a database of average time-related values?

I want to store the average values of some data that is occasionally generated by users, which I then use in my application to predict future data. Now the problem I have is that this data may grossly ...
1
vote
2answers
1k views

Cumulative sums, moving averages, and SQL “group by” equivalents in R

What's the most efficient way to create a moving average or rolling sum in R? How do you do the rolling function along with a "group by"?
0
votes
1answer
551 views

C# MSChart Candle Stick & Moving Average Chart. Error: Formula error - There are not enough data points for the Period

You cannot vote on your own post 0 I am trying to create a stock candle with MA(15) on daily data. I can create a chart with OHLC bar without any problem. But when I started ...
0
votes
1answer
37 views

Rolling Timer Array for Calculating Averages

Language: C++ Development Environment: Microsoft Visual C++ Libraries Used: MFC Problem: This should be fairly simple, but I can't quite wrap my head around it. I'm attempting to calculate a ...
0
votes
1answer
562 views

Moving average - MySQL

I'm trying to implement system-wide login throttling and I need to calculate the daily average number of failed login attempts from the last 3 months. I'm currently inserting a record on every login ...
0
votes
1answer
360 views

Simple Moving Average for stock prices

I was playing with ActiveQuant FinancialLibrary SimpleMovingAverage function SMA() below: Is there an error in the algo below, where it calculates the average by looking "into the future" ( as it ...