Untitled

From Anonymous, 1 Day ago, written in Plain Text, viewed 3 times. This paste will slip away in 3 Weeks.
URL https://paste.intergen.online/view/be75bd5b Embed
Download Paste or View Raw
  1. Linear regression calculation (OLS) for World apple production, 2000-2022.
  2. Data source: https://ourworldindata.org/grapher/apple-production.csv (World rows 2000-2022)
  3. Model: y = mX + b, where X = calendar year.
  4. Number of points n = 23
  5. SumX = 46253
  6. SumY = 1722362288
  7. SumX2 = 93015795
  8. SumXY = 3465538556762
  9. m = (n*SumXY - SumX*SumY) / (n*SumX2 - SumX^2)
  10.   = (23*3465538556762 - 46253*1722362288) / (23*93015795 - 46253^2)
  11.   = 42963898662 / 23276
  12.   = 933997797 / 506
  13. b = (SumY - m*SumX) / n
  14.   = -1840377599431 / 506
  15. Equation: y = (933997797/506) X - 1840377599431/506
  16. m decimal repeating = 1845845.4(4861660079051383399209)
  17. b decimal repeating = -3637109880.2(9841897233201581027667)
  18.  

Reply to "Untitled"

Here you can reply to the paste above