数学的には、特定のデータセットの最大値から最小値を引いて範囲を計算します。これはデータセット内の値の広がりを表し、変動性を測定するのに役立ちます。範囲が広いほど、データの広がりと変動性が大きくなります。
幸いなことに、 Excel(Excel)関数を使用すると、一連のデータの範囲を簡単に見つけることができます。方法は次のとおりです。
3 つのステップで
範囲を見つけて計算する方法(Calculate Range)
Microsoft Excelで範囲を見つける最も簡単な方法は、 MIN関数とMAX関数を使用することです。MIN関数は一連のデータの最大値を計算し、MIN関数は最小値を計算します。
まず、分析を容易にするために、データがワークシートにきちんと整理されていることを確認してください。次に、MIN関数とMAX関数を次
のように使用できます。
- データセットの外側のセルを選択します (この例では D1)。このセルに「=MAX」と入力し、ドロップダウン メニューから「=MAX」を選択します。
- クリックしてドラッグして、セルの範囲を選択します。または、セル範囲をセルに手動で入力することもできます (例: =MAX (B2: B15 ) 。Enter を押し(Press Enter)て確定します。
- (Select)別のセル (この例では D2) を選択し、「=MIN」と入力します。このセルに対して手順 2 を
繰り返します。(Repeat)
- 次に、これらの値の違いを見つける必要があります。これを行うには、セル (この例では D3) を選択し、「=( MAX(MAX)値を含むセル)-( MIN値を含むセル) 」と入力して減算関数を使用します。たとえば、=D1-D2 です。
これらの関数を 1 つのセルで組み合わせることにより、 1 つのショートカット ステップ(one shortcut step)で値の範囲を計算することができます。そのために、データセットがセル B2 からB15に含まれている例を使用します。
これらのセルを使用すると、範囲関数は次のようになります。
=MAX(B2:B15)-MIN(B2-B15)
データに合わせてセルの値を変更するだけです。
Excelで条件付き範囲を見つける方法
データ セットに外れ値がいくつかある場合、外れ値を無視する条件付き範囲を計算できます。たとえば、次のスクリーンショットの例を見てください。
ほとんどすべての値は 40 から 80 の間にありますが、1,000 付近に 2 つの値があり、1 に近い 2 つの最小値があります。範囲を計算したいがこれらの値を無視する場合は、5 未満と 900 を超える値を無視する必要があります。ここで、MAXIFSおよびMINIFS関数の出番です。
MAXIFSは特定の数値を超える値を無視する条件を追加し、MINIFSは特定の数値未満の値を無視します (各条件はコンマで区切ります)。
したがって、この例では、MAX関数は次のようになります。
=MAXIFS(B2:B15,B2:B15,”<900”)
MIN 関数は次のようになります。
=MINIFS(B2:B15,B2:B15,”>5”)
この場合、条件付き範囲を計算するため
の合計Excel式は次のようになります。(Excel)
=MAXIFS(B2: B15 ,B2: B15 ,”<900”)-MINIFS(B2: B15 ,B2: B15 ,”>5”)
注: MAXIFS関数とMINIFS関数はExcel 2019とMicrosoft Office 365でのみ使用できるため、古いバージョンを使用している場合は、IF 関数を個別に含める必要があります。例: =MAX(B2: B15 )-MIN(IF(B2: B15 >5,B2: B15 )
データ分析がこれまでに(Data Analysis Has)なく簡単になりました(Been Easier)
Microsoft Excel は、データを分析するための強力なツールです(powerful tool for analyzing data)。このチュートリアルを使用すると、外れ値を削除する必要がある場合でも、データセットの範囲を簡単に計算できます。
How to Find and Calculate Range in Excel
Mathematically, yоu calсulate a range by sυbtracting the minimum value from the maximum value of a particular dataset. It represents the spread of values within a dataset and іs useful for measuring variability – the larger the range, the more spread out and νariаble уour data is.
Luckily, finding the range of a set of data is easy when using Excel functions. Here’s how to do it.
How to Find and Calculate Range in 3 Steps
The easiest way to find the range in Microsoft Excel is by using the MIN and MAX functions. The MIN function calculates the highest value in a set of data, while the MIN function calculates the smallest value.
First, ensure that your data is neatly organized in your worksheet for ease of analysis. Then, you can use the MIN and MAX functions as follows:
- Select a cell outside of your dataset (in our example D1). In this cell, type =MAX and select =MAX from the drop-down menu.
- Select your range of cells by clicking and dragging. Alternatively, you can type the cell range into the cell manually (for example, =MAX(B2:B15). Press Enter to confirm.
- Select another cell (in our example D2) and type =MIN. Repeat step 2 for this cell.
- Now you need to find the difference between these values. To do this, select a cell (in our example, D3) and use the subtract function by typing =(the cell that contains MAX value)-(the cell that contains MIN value). For example, =D1-D2.
It’s possible to calculate the range of values in one shortcut step by combining these functions in one cell. To do so, we’ll use our example where the dataset is contained in cells B2 to B15.
Using these cells, the range function would look like the following:
=MAX(B2:B15)-MIN(B2-B15)
All you have to do is change the cell values to match your data.
How to Find a Conditional Range in Excel
If your set of data has a few outliers, it’s possible to calculate a conditional range that ignores the outliers. For instance, take a look at this example screenshot:
Almost all of the values are between 40 and 80, yet there are two around 1,000 and the two lowest values are close to 1. If you wanted to calculate the range but ignore those values, you would need to ignore values under 5 and over 900. This is where the MAXIFS and MINIFS functions come in.
MAXIFS adds a condition that ignores values over a certain number, while MINIFS ignores values lower than a certain number (with each condition separated by a comma).
So, for our example, the MAX function would become:
=MAXIFS(B2:B15,B2:B15,”<900”)
And the MIN function would become:
=MINIFS(B2:B15,B2:B15,”>5”)
In this case, the total Excel formula for calculating the conditional range will be:
=MAXIFS(B2:B15,B2:B15,”<900″)-MINIFS(B2:B15,B2:B15,”>5″)
Note: The MAXIFS and MINIFS functions are only available in Excel 2019 and Microsoft Office 365, so if you’re using an older version, you will need to include the IF function separately. For example: =MAX(B2:B15)-MIN(IF(B2:B15>5,B2:B15)
Data Analysis Has Never Been Easier
Microsoft Excel is a powerful tool for analyzing data. With this tutorial, you can easily calculate the range of any dataset, even if you need to remove outliers.