About 50 results
Open links in new tab
  1. Detect and exclude outliers in a pandas DataFrame

    That's also the transformation that sklearn 's RobustScaler uses for example. IQR and median are robust to outliers, so you outsmart the problems of the z-score approach. In a normal distribution, we …

  2. Is there a numpy builtin to reject outliers from a list

    Jul 27, 2012 · Linear outliers can be found by numpy std function, however, if the data is non-linear, for example, a parabola or cubic function, standard deviation will not handle the task well, since it needs …

  3. Can scipy.stats identify and mask obvious outliers?

    Apr 19, 2012 · With scipy.stats.linregress I am performing a simple linear regression on some sets of highly correlated x,y experimental data, and initially visually inspecting each x,y scatter plot for …

  4. How to remove outliers from a dataset - Stack Overflow

    Jan 25, 2011 · Yes, it is not good to remove 'outliers' from the data but sometimes you need the data without outliers for specific tasks. In an statistics assignment I had recently, we had to visualise a set …

  5. Boxplots in matplotlib: Markers and outliers - Stack Overflow

    A picture is worth a thousand words. Note that the outliers (the + markers in your plot) are simply points outside of the wide [(Q1-1.5 IQR), (Q3+1.5 IQR)] margin below. However, the picture is only an …

  6. Remove Outliers in Pandas DataFrame using Percentiles

    Mar 6, 2016 · Remove Outliers in Pandas DataFrame using Percentiles [duplicate] Asked 9 years, 11 months ago Modified 4 years, 3 months ago Viewed 118k times

  7. Python Seaborn - How are outliers determined in boxplots

    On their website seaborn.boxplot they simple state: The box shows the quartiles of the dataset while the whiskers extend to show the rest of the distribution, except for points that are determined to be …

  8. calculating the outliers in R - Stack Overflow

    Oct 13, 2012 · This is troublesome, because the mean and standard deviation are highly #' affected by outliers – they are not robust. In fact, the skewing that outliers bring is one of the #' biggest reasons …

  9. Effective ways to remove outliers in a timeseries - Stack Overflow

    Oct 5, 2023 · I am looking for efficient ways to remove outliers in my data. I have tried several solutions that I found here on Stack Overflow and elsewhere but none of them worked for me (4 high values of …

  10. python - Pythonic way of detecting outliers in one dimensional ...

    18 Detection of outliers in one dimensional data depends on its distribution 1- Normal Distribution :