Skip to content
Advertisement

Is there a way to get cumulative percentages in PHP?

I want to run cumulative percentages. I can do it for my array in R as follows:

JavaScript

and I get the results:

JavaScript

As you can see, I get the value of 7 as well using this code.

I want to get the same output using PHP.

I have written this code so far to get frequency, but as you can see the value 7 has not appeared.

I want to get cumulative percentages (cum) which I was unable to do. The code that I have used is:

JavaScript

Advertisement

Answer

array_count_values would give you just the frequency of elements. To find out cumulative, you would have to do the addition yourself.

JavaScript

Demo: https://3v4l.org/vodsf


Update:

Since you need all the missing elements between min and max elements, you can just loop over the frequency data and have an isset check to gather the cumulatives for missing as well as non missing.

JavaScript

Demo: https://3v4l.org/41g2n

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement