Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 940 Bytes

File metadata and controls

35 lines (28 loc) · 940 Bytes

DataSnake

DataSnake is a Python library that performs statistical calculations on lists of real numbers.

1-Variable Calculations

The DataSnake module currently supports the following 1-variable statistics calculations:

  • Mean
  • Minimum
  • Quartile 1
  • Median
  • Quartile 3
  • Maximum
  • Range
  • IQR
  • Population standard deviation
  • Sample standard deviation
  • Lower/upper fences
  • Outliers

2-Variable Calculations

The module currently supports the following 2-variable statistics calculations:

  • Correlation coefficient (r)
  • Coefficient of determination (r-squared)
  • Linear regression line's equation
  • Linear regression line's slope
  • Linear regression line's y-intercept

More features are on the way. Stay tuned!