Questions tagged [cumulative-frequency]
90 questions
0
votes
1 answer
How to find if a value lies in between bounds of a histogram?
I have an empirical set of data (Hypothetically x=normrnd(10,3,1000,1);) which has a cumulative distribution function as follows:
I also have a set of data x1=[11,11.1,10.1]. I'd like to find the probability of finding the values of x1 if they came…

HCAI
- 2,213
- 8
- 33
- 65
0
votes
1 answer
d3 histogram with cumulative frequency/distribution line in the same chart/graph?
d3 is pretty cool and I just got started with it as a novice. There are several examples for histograms and I settled on this one. And I did a brief search for cumulative line chart, cumulative distribution, and cumulative frequency, all with…

David
- 3,223
- 3
- 29
- 41
0
votes
1 answer
I'm trying to make a cumulative distribution chart in VBA
First time poster. To make this cumulative disti chart I make a straight lined xy scatter plot. The y axis values are the percentiles, all of which are in A2:A100. The corresponding x values are in Columns B through n. n being variable as it…

Adam Belnap
- 38
- 5
0
votes
0 answers
Histogram with 2 Y-axes, 1 Freq, 1 Cum Freq%
I try to generate a histogram with 2 Y-axes.
1 Y-axe with the freq and 1 Y-axe with the cumulative freq in %.
this is the closest I can get but it's a bit messy at the plot
multiple labels on the axes, axis 4 not properly…

Timon
- 3
- 3
0
votes
2 answers
Spark: getting cumulative frequency from frequency values
My question is rather simple to be answered in a single node environment, but I don't know how to do the same thing in a distributed Spark environment. What I have now is a "frequency plot", in which for each item I have the number of times it…

mgaido
- 2,987
- 3
- 17
- 39
0
votes
1 answer
r- cumulative frequency when every combination doesn't appear always
I need to get the cumulative clients by number of calls up to everyday.
An example table would be:
> data
dia cli llam elegidos cumllam
1 1-11 a 1 1 1
2 3-11 a 1 1 2
3 1-11 b 2 1 2
4 2-11 b …

GabyLP
- 3,649
- 7
- 45
- 66
0
votes
1 answer
Why is a list of cumulative frequency sums required for implementing a random word generator?
I'm working on exercise 13.7 from Think Python: How to Think Like a Computer Scientist. The goal of the exercise is to come up with a relatively efficient algorithm that returns a random word from a file of words (let's say a novel), where the…

doubledherin
- 11
- 1
0
votes
2 answers
cumulative frequency in SAS Dataset
i have my dataset which looks like below:
Customer Sales
1 15
2 14
3 13
4 11
5 12
6 18
7 21
I need to sort customers by % Sales and then assign them into "high",…
user2724207
0
votes
2 answers
Add Mysql cumulative frequency field using any method
i have a sales 'table' and from it i have created a 'view' called dailyactivity which gives me the total sales made on each day. i am trying to add a cumulative frequency field but it returns an empty coloumn.can any one point me in the right…

Law
- 129
- 1
- 3
- 10
0
votes
3 answers
cumulative frequency array in perl?
I've got an array of integers and i was wondering how you would code for a cumulative frequency array. should i use a for loop or is there a quicker way.
e.g given integers: 1 2 3 4 5 6 7 8
the new array would print: 1 3 6 10 15 21 28 36
thanks!

user1637359
- 227
- 4
- 10
0
votes
1 answer
How to process data for a cumulative percent frequency plot in R
I have a large dataset of clusters with values for a parameter. Multiple clusters can have the same value.
I want to make a cumulative percent frequency distribution plot, with cumulative percentage of no. of clusters in y axis and the parameter…

psaima
- 61
- 1
- 8
-1
votes
1 answer
Cumulative Frequency Graph in R
I've been trying to look around to see if other questions helped - they didn't.
I've imported my data as follows:
Data <- read.csv("Module 1.csv")
Data Output:
structure(list(ID = 1:50, Data_Points = c(41L, 42L, 43L, 44L,
45L, 45L, 45L, 46L, 47L,…

Anonymous
- 1
- 1
-1
votes
1 answer
R: Counting the cumulative length of a factor in data.frame
I have this database:
Time = c("2016-03-01","2016-03-02","2016-03-03","2016-03-02","2016-03-03","2016-03-02")
match = c("a","b","c","a","b","c")
names = c("julien","julien","julien", "mathieu","mathieu","simon")
df = data.frame(Time, names, match)…

Julien Céré
- 11
- 3
-2
votes
1 answer
R counter, counting frequency in a table
I have following data set
id year
2 20332 2005
3 6383 2005
14 20332 2006
15 6806 2006
16 23100 2006
I would like to have an additional column, which counts the…

Nils
- 129
- 1
- 9
-4
votes
1 answer
produce percentage cumulative plot
I want to plot a percentage cumulative graph of rainfall against day (time of the year). For example my data is:
day rain
1 12.2
2 32.5
3 23.4
4 33.9
5 19.8
6 15.3
…

89_Simple
- 3,393
- 3
- 39
- 94