Guest User

Untitled

a guest
Jun 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. > model = lm(time ~ count_no_fp, data=d)
  2. > model
  3.  
  4. Call:
  5. lm(formula = time ~ count_no_fp, data = d)
  6.  
  7. Coefficients:
  8. (Intercept) count_no_fp
  9. 1.287e+09 -3.701e+00
  10.  
  11. > coefs = coef(model)
  12. > coefs
  13. (Intercept) count_no_fp
  14. 1.287365e+09 -3.700978e+00
  15. > -coefs[1] / coefs[2]
  16. (Intercept)
  17. 347844532
  18. > as.POSIXct(347844532)
  19. Error in as.POSIXct.numeric(347844532) : 'origin' must be supplied
  20. >
Add Comment
Please, Sign In to add comment