Jump to content

to eliminate outliers in the graph


Roman Alpatov 2

Recommended Posts

I think there are a couple of ways to do this... Here are two suggestions:

You could add a calculated column that evaluates TRUE/FALSE when a value is/is not an outlier and then filter on this column.

Or you can directly limit the data in your visualization by going to the properties -> data ->limit by expression and using somethings like (replace [Y] with your column on the Y axis):

[Y] < Avg([Y]) + 3*StdDev([Y]) AND [Y] > Avg([Y]) - 3*StdDev([Y])

This formula would check whether your data point is within 3 times the standard deviation. But of course, you can change the definition of your outliers. Just make sure that you have a booleanexpression.

You can combine both approaches also with a document property (that for example takes the place of factor 3 in the above calculation) to adjust your outlier calculation quickly.

Link to comment
Share on other sites

Another thing you could do is create a scatterplot for your data. Then mark the outliers (for example by holding your ALT button down and drawing a lasso arround the outliers). Then right click and select 'Marked Rows' adn select 'Filter Out'. This will create a new column called 'Filtered out at ' column which holds 2 values yes/no. Automatically a filter is applied to not shows these values. You can choose to include the values by removing the filter from this column.

Best regards,

Alain Martens

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...