compound_growth_projection
Projects a starting value after a fixed annual compound growth rate and a whole number of years.
- Inputs
- principal · annual_rate · years
- Output
- projected value
- Runtime
- venv · Python 3.13
from spl import SPLClient
result = SPLClient.embedded().call(
"splime://@ky/public-examples/compound_growth_projection@1",
kwargs={
"principal": 1000.0,
"annual_rate": 0.05,
"years": 10,
},
trust=True,
)