Update app.py
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ r_d = A * (1 + y/(12*100))**z
|
|
| 17 |
|
| 18 |
r_c = A * np.exp(y*z/(12*100))
|
| 19 |
|
| 20 |
-
future_value = A * ((1 +
|
| 21 |
|
| 22 |
new_dict = {"Año": z,
|
| 23 |
"Retorno Discreto": r_d,
|
|
@@ -28,4 +28,4 @@ df.columns = new_dict.keys()
|
|
| 28 |
|
| 29 |
st.dataframe(df)
|
| 30 |
|
| 31 |
-
st.write(f"En {T} tendrás $ {future_value}")
|
|
|
|
| 17 |
|
| 18 |
r_c = A * np.exp(y*z/(12*100))
|
| 19 |
|
| 20 |
+
future_value = A * ((1 + y) ** T)
|
| 21 |
|
| 22 |
new_dict = {"Año": z,
|
| 23 |
"Retorno Discreto": r_d,
|
|
|
|
| 28 |
|
| 29 |
st.dataframe(df)
|
| 30 |
|
| 31 |
+
st.write(f"En {T} tendrás un valor futuro de $ {future_value}")
|