piecewise_logistic.Rd 656 B

1234567891011121314151617181920212223242526272829
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{piecewise_logistic}
  4. \alias{piecewise_logistic}
  5. \title{Evaluate the piecewise logistic function.}
  6. \usage{
  7. piecewise_logistic(t, cap, deltas, k, m, changepoint.ts)
  8. }
  9. \arguments{
  10. \item{t}{Vector of times on which the function is evaluated.}
  11. \item{cap}{Vector of capacities at each t.}
  12. \item{deltas}{Vector of rate changes at each changepoint.}
  13. \item{k}{Float initial rate.}
  14. \item{m}{Float initial offset.}
  15. \item{changepoint.ts}{Vector of changepoint times.}
  16. }
  17. \value{
  18. Vector y(t).
  19. }
  20. \description{
  21. Evaluate the piecewise logistic function.
  22. }
  23. \keyword{internal}