Boxplot outliers

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Lars Iversen
Newbie
Newbie
Posts: 61
Joined: Wed Jun 22, 2005 4:00 am
Location: cph

Boxplot outliers

Post by Lars Iversen » Fri Jul 04, 2008 9:33 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Jul 16, 2008 9:08 am

Hi Lars,

Mild outliers are defined in TeeChart like this:

Code: Select all

if (((tmpVal >= innerFence3) && (tmpVal <= outerFence3)) || ((tmpVal <= innerFence1) && (tmpVal >= outerFence1)))
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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Lars Iversen
Newbie
Newbie
Posts: 61
Joined: Wed Jun 22, 2005 4:00 am
Location: cph

Post by Lars Iversen » Tue Jul 29, 2008 1:14 pm

Hi

Thanks for the reply.

What exactly is the innerfence and outerfence?
if I do not set the values of inner and outer fence myself what formulars does teechart then use to calculate them?

Thanks in advance

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jul 29, 2008 1:27 pm

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!
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply