python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
postgresql - running median of y-values over a range of x
I want to smooth noisy data by applying a running median filter.
All the solutions I found are doing the rank statistics on the row used to define the running window.
Remark: The function 'percentile_...
schaerm
Votes: 0
Answers: 1
Interquartile range for categorical data
I have been asked to report the descriptive statistics of my results in terms of IQR and median for my categorical variables but I do not know how I can do that! I know the logic but in continuous dat...

Aura
Votes: 0
Answers: 1
How to write pseudo code for median function?
I recognise that Pseudo code is relative to our own abbreviations but I am having a struggling converting this to Pseudo code:
median = (sum(s[n//2-1:n//2+1])/2.0, s[n//2])[n % 2] if n else None
...
Abadon
Votes: 0
Answers: 1
Extract fixed number of Median_high Values of a list
I have a list of values of variable length and want to reduce/filter the list to a fixed length of n values by keeping statistics.median_high values, how would you do that ?
I'm currently thinking of ...
krist0f
Votes: 0
Answers: 0