I am working on a time series of numeric values, such as those produced by a temperature sensor. I'd like to filter those values, roughly selecting those samples that form e.g. the top 10% of the received values.
The obvious solution of recording all samples and using any well-known algorithm for the extraction of the k-highest values is not possible in my case for two reasons:
The series may be infinite, memory is definitely not.
I'd like this algorithm to be usable in real-time, or at least in a streaming mode with predetermined latency.
The distribution of the values is not normal, nor is it consistent with any well-known distribution that I know of. Metrics that I already have available at any time include the mean, the variance and the skewness of the values that have already been received.
Unlike this question, I do not need perfect accuracy, although I would like to be able to tune the parameters of the selection algorithm.
I believe something similar is used in single-pass variable bit-rate (VBR) media codecs to allocate the available bandwidth to each frame, by determining the number of available bits. Unfortunately all the VBR algorithms I studied are too focused on DSP and media streams for me to understand and/or implement.
Are there any known algorithms that could help me deal with this issue? Any hints that would orient me towards the right direction would be greatly appreciated.