I am assuming the numbers you are providing are a Probability Density Function (PDF) and that you want to compute a Cumulative Distribution Function (CDF) from that PDF. In that case...
B1 would simply be =A1
. B2 =B1+A2
, B3 =B2+A3
, etc. Then highlight the data in column B, click the "Insert" Tab, and select a line graph. Alternatively you could do in B1 =SUM(A$1:A1)
and fill down.
BTW, CDF's are usually monotonically increasing between 0 and 1. Your PDF doesn't generate a CDF which goes all the way to 1. So, if this is what you're aiming for, you're either not listing all of the data in your PDF, or you need to scale things a little differently. You could divide each element in column A by the sum of those elements, and that will sum to 1. If all you want is a properly defined CDF, though, you can do it directly by setting B1 =SUM(A$1:A1)/SUM(A:A)
and again fill down.