Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
4k views

SQL query for cumulative frequency of list of datetimes

I have a list of times in a database column (representing visits to a website). I need to group them in intervals and then get a 'cumulative frequency' table of those dates. For instance I might ...
2
votes
2answers
70 views

SQL query - find row which exceeds cumulative proportion

Say I have a table of data that looks like: ItemNo | ItemCount | Proportion ------------------------------------------ 1 3 0.15 2 2 ...
2
votes
1answer
225 views

Changing the relative height of the bins of a histogram interactively

In subjective probability assessments one needs to elicit the distribution of subjects believes. It can be achieved by letting the subject manipulate the relative height of each frequency bin of a ...
1
vote
1answer
390 views

SQL: Fast Cumulative Frequency Query (postgres)

I'm looking to get Cumulative Frequency Data out of our database. I've created a simple temp table with all unique status update counts that we've seen, and the number of users that have that amount ...
1
vote
1answer
355 views

Plot with fewer markers than data points (or a better way to plot CDFs?) [matplotlib, or general plotting help]

I am plotting Cumulative Distribution Functions, with a large number of data points. I am plotting a few lines on the same plot, which are identified with markers as it will be printed in black and ...