how to select a statistical range in an excel

0 votes
I have a large array of numbers. These readings were taken every day for four months. One gadget is represented by each row. I must determine the trendline and disregard the outliers. I made an effort to determine the IQR, then the range, and finally a filter to remove outliers that fall beyond the range. the problem is that there are a lot of repetitive results so the q1 and the q3 could very easily be the same number. is there a way to select the central 90% of results in a range? let's say from  [1,1,1,1,1,1,1,1,2,3,4,5,7,8,9,9,9,9,9,9] Select [1,1,1,1,1,1,1,2,3,4,5,7,8,9,9,9,9,9] to make life harder, I'd also like to be able to select the associated date with the day the measurement was taken. the dates are in a separate row.
Nov 3, 2022 in Others by Kithuzzz
• 38,010 points
424 views

1 answer to this question.

0 votes

The lowest 5% and top 5% will not be included in the dynamic array that this formula returns. Your data range is assumed to be A1–A20.

=FILTER($A$1:$A$20,(ROW($A$1:$A$20)>0.05*COUNT($A$1:$A$20))*ROW($A$1:$A$20)<0.95*COUNT($A$1:$A$20))
answered Nov 4, 2022 by narikkadan
• 63,420 points

Related Questions In Others

0 votes
1 answer

How to add Conditional Formatting in Excel for a Range of Values

Three distinct rules are required, one for ...READ MORE

answered Oct 24, 2022 in Others by narikkadan
• 63,420 points
807 views
0 votes
1 answer

How to multiply by a percentage range in Excel

The following would yield an array from ...READ MORE

answered Nov 8, 2022 in Others by narikkadan
• 63,420 points
335 views
0 votes
1 answer

How to find a value in an excel column by vba code Cells.Find

Just use: Dim Cell As Range Columns("B:B").Select Set cell = ...READ MORE

answered Nov 17, 2022 in Others by narikkadan
• 63,420 points
3,014 views
0 votes
1 answer

How to save a new sheet in an existing excel file, using Pandas?

import pandas as pd import numpy as np path ...READ MORE

answered Dec 10, 2022 in Others by narikkadan
• 63,420 points
6,531 views
0 votes
1 answer

Statistical Power of Sensitivity

Sensitivity is commonly used to validate the ...READ MORE

answered Jul 13, 2018 in Data Analytics by CodingByHeart77
• 3,740 points
783 views
0 votes
2 answers

Significance of P-value in statistical data

Refer the following points explaining the significance ...READ MORE

answered Aug 10, 2018 in Data Analytics by Atul
• 180 points
1,106 views
0 votes
1 answer

Retrieve epay.info Balance with VBA and Excel

This code should log you in, provided ...READ MORE

answered Sep 5, 2018 in Blockchain by digger
• 26,740 points
916 views
0 votes
1 answer

ImportError: openpyxl is required for loading excel format files

Forget the PsychoPy complications for the time ...READ MORE

answered Oct 3, 2018 in Python by Priyaj
• 58,090 points
834 views
0 votes
1 answer

Excel-VBA - How to identify Target range (more than 1 cell) is deleted in a Worksheet_Change function?

You misunderstand the purpose of the function ...READ MORE

answered Sep 23, 2022 in Others by narikkadan
• 63,420 points
3,139 views
0 votes
1 answer

How to stick an embedded document in a specific cell of an excel

Solution Select the documents (you can use the ...READ MORE

answered Oct 18, 2022 in Others by narikkadan
• 63,420 points
432 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP