Hi
I have a question about outliers in boxplots. I haven't been able to find an answer in any documentation.
What is the precise condition for distinguishing between mild and extreme outliers in a box plot?
What condition is required for a point to be an outlier and what condition is required for a point to be an extreme outlier?
Thanks in advance
Lars Iversen
Boxplot outliers
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lars,
Mild outliers are defined in TeeChart like this:
This can also be done manually as in the example at All Features\Welcome!\Chart Styles\Statistical\Box-Plot\Custom values in the new features demo, available at TeeChart's program group.
Basically, you can do anything with box plot, as long as you have meaningful values.
Mild outliers are defined in TeeChart like this:
Code: Select all
if (((tmpVal >= innerFence3) && (tmpVal <= outerFence3)) || ((tmpVal <= innerFence1) && (tmpVal >= outerFence1)))
Basically, you can do anything with box plot, as long as you have meaningful values.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 61
- Joined: Wed Jun 22, 2005 4:00 am
- Location: cph
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lars,
On my 16th March 2007 post on this thread I described what inner-fence and outer-fence are and how they are calculated.
Hope this helps!
On my 16th March 2007 post on this thread I described what inner-fence and outer-fence are and how they are calculated.
Hope this helps!
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |