About 48,100 results
Open links in new tab
  1. How to calculate 1st and 3rd quartiles? - Stack Overflow

    However, the quartiles are Q1=10.0, Median=14, Q3=24.5 (you can also use this link to find the quartiles and median online). One can use the below code to calculate the quartiles and median of a sorted …

  2. How to get the quartiles of a list of integers - Stack Overflow

    Jul 6, 2022 · I have a function which I want to find Q1, Q2, and Q3 of a list of ordered integers.

  3. How to get quantiles to work with summarise_at and group_by (dplyr)

    Sep 17, 2019 · When using dplyr to create a table of summary statistics that is organized by levels of a variable, I cannot figure out the syntax for calculating quartiles without having to repeat the column …

  4. python - how to use pandas filter with IQR - Stack Overflow

    Jan 14, 2016 · Is there a built-in way to do filtering on a column by IQR(i.e. values between Q1-1.5IQR and Q3+1.5IQR)? also, any other possible generalized filtering in pandas suggested will be …

  5. python - How to get the 1st and 3rd quartile of a list of sorted ...

    So I want to find the 1st quartile and 3rd quartile for a list like [1,2,3,4,5,6,7,8,9,10] but I can't use any modules outside other than math, and nope, I can't use numpy, as this is program is fo...

  6. Proc summary: outputting median and quartiles - Stack Overflow

    Mar 18, 2014 · The statistics in the PROC SUMMARY statement only control what is output to the ODS destinations active (the screen, usually). If you want them in the dataset, you need to either specify …

  7. math - finding q1 and q3 using median () in a python program of an ...

    Jan 19, 2022 · finding q1 and q3 using median () in a python program of an unsorted number list without NumPy, pandas or other packages

  8. Write a basic function in R to get the interquartile (Q3-Q1)

    May 28, 2020 · I have a question for the code as follows. The question is shown below. Write a basic function (call it getIQR) that takes in a vector of numbers and returns the interquartile range (75th …

  9. Detect Outliers across all columns of Pandas Dataframe

    Sep 20, 2021 · def find_outliers(df): q1 = df[i].quantile(.25) q3 = df[i].quantile(.75) IQR = q3 - q1 ll = q1 - (1.5*IQR) ul = q3 + (1.5*IQR) upper_outliers = df[df[i] > ul].index ...

  10. mysql - Quartiles in SQL query - Stack Overflow

    Jul 3, 2015 · I would like to have Q1 and Q3 for all sensors. I can do one query for every data, but it would be better for me to have one query for all sensors (getting Q1 and Q3 back from one query) I …