Question About Probability, Travel Distance, and What Function to Use?

MocExcel

New Member
Joined
Jun 22, 2017
Messages
3
Hello!

I'm trying to figure out what is the probability of a unit traveling greater than X given my data set. I am testing what is the % chance of the distance being greater on 1 try.

Here is some info about the data set:
Mean Travel Distance: 33.8
Median Travel Distance: 25
Standard Deviation: 31.3
Sample Size: 2139
Max Distance: 192
Min Distance: 0

I was using the below equation, but I do not know if it is the right function because the data is skewed right instead of a normal distribution:

=1-NORM.DIST(Travel Distance Being Tested,Mean,Standard Deviation,TRUE)

Should I be using a different function based on my data set?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Reckon someone would have to look at the data to see if they could fit a better distribution, but you could certainly use a formula to count the fraction of samples > x:

=countif(data, ">" & x) / count(data)
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top