About 11,900,000 results
Open links in new tab
  1. python - Finding outliers in a data set - Stack Overflow

    May 8, 2013 · I have a python script that creates a list of lists of server uptime and performance data, where each sub-list (or 'row') contains a particular cluster's stats. For example, nicely formatted it lo...

  2. 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 …

  3. How to identify and remove outliers in a data.frame using R?

    Sep 14, 2021 · 3 The identify_outliers expect a data.frame as input i.e. usage is identify_outliers (data, ..., variable = NULL) where ... - One unquoted expressions (or variable name). Used to select a …

  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. R check for outliers in multiple variables - Stack Overflow

    The output of identify_outliers is a tibble with multiple columns and it can take a single variable at a time. The variable name can be either quoted or unquoted. In that case, we can group_split the data by …

  7. python - Matplotlib boxplot without outliers - Stack Overflow

    Jan 16, 2016 · Matplotlib boxplot without outliers Asked 11 years, 9 months ago Modified 2 years, 3 months ago Viewed 118k times

  8. How do i remove outliers using multiple columns pandas?

    Apr 2, 2019 · Out of my entire dataframe i have two columns price and quantity. These both contain outliers. How can i remove the outliers in both these columns such that the dataframe returned …

  9. 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 …

  10. 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 …