What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

The mean of a set of numbers, sometimes simply called the average , is the sum of the data divided by the total number of data.

Example 1 :

Find the mean of the set { 2 , 5 , 5 , 6 , 8 , 8 , 9 , 11 } .

There are 8 numbers in the set. Add them all, and then divide by 8 .

2   +   5   +   5   +   6   +   8   +   8   +   9   +   11 8 = 54 8 = 6.75

So, the mean is 6.75 .

The Median of a Data Set

The median of a set of numbers is the middle number in the set (after the numbers have been arranged from least to greatest) -- or, if there are an even number of data, the median is the average of the middle two numbers.

Example 1 :

Find the median of the set { 2 , 5 , 8 , 11 , 16 , 21 , 30 } .

There are 7 numbers in the set, and they are arranged in ascending order.  The middle number (the 4 th one in the list) is 11 .  So, the median is 11 .

Example 2 :

Find the median of the set { 3 , 10 , 36 , 255 , 79 , 24 , 5 , 8 } .

First, arrange the numbers in ascending order.

{ 3 , 5 , 8 , 10 , 24 , 36 , 79 , 255 }

There are 8 numbers in the set -- an even number. So, find the average of the middle two numbers, 10 and 24 .

10   +   24 2 = 34 2 = 17

So, the median is 17 .

The Mode of a Data Set

The mode of a set of numbers is the number which occurs most often.

Example 1 :

Find the mode of the set { 2 , 3 , 5 , 5 , 7 , 9 , 9 , 9 , 10 , 12 } .

2 , 3 , 7 , 10 and 12 each occur once.

5 occurs twice and 9 occurs three times.

So, 9 is the mode.

Example 2 :

Find the mode of the set { 2 , 5 , 5 , 6 , 8 , 8 , 9 , 11 } .

In this case, there are two modes -- 5 and 8 both occur twice, whereas the other numbers only occur once.

When analyzing numerical data, you may often be looking for some way to get the "typical" value. For this purpose, you can use the so-called measures of central tendency that represent a single value identifying the central position within a data set or, more technically, the middle or center in a statistical distribution. Sometimes, they are also classified as summary statistics.

The three main measures of central tendency are Mean, Median and Mode. They all are valid measures of central location, but each gives a different indication of a typical value, and under different circumstances some measures are more appropriate to use than others.

How to calculate mean in Excel

Arithmetic mean, also referred to as average, is probably the measure you are most familiar with. The mean is calculated by adding up a group of numbers and then dividing the sum by the count of those numbers.

For example, to calculate the mean of numbers {1, 2, 2, 3, 4, 6}, you add them up, and then divide the sum by 6, which yields 3: (1+2+2+3+4+6)/6=3.

In Microsoft Excel, the mean can be calculated by using one of the following functions:

  • AVERAGE- returns an average of numbers.
  • AVERAGEA - returns an average of cells with any data (numbers, Boolean and text values).
  • AVERAGEIF - finds an average of numbers based on a single criterion.
  • AVERAGEIFS - finds an average of numbers based on multiple criteria.

For the in-depth tutorials, please follow the above links. To get a conceptual idea of how these functions work, consider the following example.

In a sales report (please see the screenshot below), supposing you want to get the average of values in cells C2:C8. For this, use this simple formula:

=AVERAGE(C2:C8)

To get the average of only "Banana" sales, use an AVERAGEIF formula:

=AVERAGEIF(A2:A8, "Banana", C2:C8)

To calculate the mean based on 2 conditions, say, the average of "Banana" sales with the status "Delivered", use AVERAGEIFS:

=AVERAGEIFS(C2:C8,A2:A8, "Banana", B2:B8, "Delivered")

You can also enter your conditions in separate cells, and reference those cells in your formulas, like this:

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

Median is the middle value in a group of numbers, which are arranged in ascending or descending order, i.e. half the numbers are greater than the median and half the numbers are less than the median. For example, the median of the data set {1, 2, 2, 3, 4, 6, 9} is 3.

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

This works fine when there are an odd number of values in the group. But what if you have an even number of values? In this case, the median is the arithmetic mean (average) of the two middle values. For example, the median of {1, 2, 2, 3, 4, 6} is 2.5. To calculate it, you take the 3rd and 4th values in the data set and average them to get a median of 2.5.

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

In Microsoft Excel, a median is calculated by using the MEDIAN function. For example, to get the median of all amounts in our sales report, use this formula:

=MEDIAN(C2:C8)

To make the example more illustrative, I've sorted the numbers in column C in ascending order (though it is not actually required for the Excel Median formula to work):

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

In contrast to average, Microsoft Excel does not provide any special function to calculate median with one or more conditions. However, you can "emulate" the functionality of MEDIANIF and MEDIANIFS by using a combination of two or more functions like shown in these examples:

How to calculate mode in Excel

Mode is the most frequently occurring value in the dataset. While the mean and median require some calculations, a mode value can be found simply by counting the number of times each value occurs.

For example, the mode of the set of values {1, 2, 2, 3, 4, 6} is 2. In Microsoft Excel, you can calculate a mode by using the function of the same name, the MODE function. For our sample data set, the formula goes as follows:

=MODE(C2:C8)

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

In situations when there are two or more modes in your data set, the Excel MODE function will return the lowest mode.

Generally, there is no "best" measure of central tendency. Which measure to use mostly depends on the type of data you are working with as well as your understanding of the "typical value" you are attempting to estimate.

For a symmetrical distribution (in which values occur at regular frequencies), the mean, median and mode are the same. For a skewed distribution (where there are a small number of extremely high or low values), the three measures of central tendency may be different.

Since the mean is greatly affected by skewed data and outliers (non-typical values that are significantly different from the rest of the data), median is the preferred measure of central tendency for an asymmetrical distribution.

For instance, it is generally accepted that the median is better than the mean for calculating a typical salary. Why? The best way to understand this would be from an example. Please have a look at a few sample salaries for common jobs:

  • Electrician - $20/hour
  • Nurse - $26/hour
  • Police officer - $47/hour
  • Sales manager - $54/hour
  • Manufacturing engineer - $63/hour

Now, let's calculate the average (mean): add up the above numbers and divide by 5: (20+26+47+54+63)/5=42. So, the average wage is $42/hour. The median wage is $47/hour, and it is the police officer who earns it (1/2 wages are lower, and 1/2 are higher). Well, in this particular case the mean and median give similar numbers.

But let's see what happens if we extend the list of wages by including a celebrity who earns, say, about $30 million/year, which is roughly $14,500/hour. Now, the average wage becomes $2,451.67/hour, a wage that no one earns! By contrast, the median is not significantly changed by this one outlier, it is $50.50/hour.

What you do is add up the numbers in your data set and then divide it by the total numbers in the set which of the following is being reffered to this?

Agree, the median gives a better idea of what people typically earn because it is not so strongly affected by abnormal salaries.

This is how you calculate mean, median and mode in Excel. I thank you for reading and hope to see you on our blog next week!

You may also be interested in