I'm looking to model the frequency of events to quantify how much that frequency is increasing or decreasing. For the sake of concreteness think of the events as web page hits for several low traffic web sites, and I would like to compare how much they are "trending" up or down relative to one another. My main question is what am I reinventing?
In broad strokes this is the what I'm thinking. I have a set of events at a set of times $E = \{t_1,...t_N\}$ with $t_i < 0$. From these I have an event distribution function which is the sum of Dirac delta functions. $$ \Phi(t) = K\sum_{i=1}^N\delta(t-t_i) $$ where K is some normalizing factor. I would like to model this like a linear regression with $L(t) = at + b$ by minimizing $ \Vert{L-\Phi}\Vert$. Older events should be weighted less, so my inner product measure would be something like: $$ d\omega = e^{kt}dt $$ Before I started digging out the details of this (the normalization, the inner product measure, etc.) I got the nagging suspicion that this has been done before :) So my question is -- where can I read about the established theory, practice, and terminology for this type of problem? Any suggestions about how to either rephrase the title of this question or reformulate the problem are appreciated as well.