summary.tvm: Summarizing TVM model by printing its amortization table

Description Usage Arguments Details Author(s) See Also Examples

Description

Prints amortization table of TVM model.

Usage

1
2
## S3 method for class 'tvm'
summary(object, row = 1, ...)

Arguments

object

an object of class "tvm", created by tvm

row

a row number to make summary, default first row.

...

additional arguments, currently ignored.

Details

A table containing balance, interest, principal and payment for each step is produced and printed.

Author(s)

Lukasz Komsta

See Also

tvm

Examples

1
2
y=tvm(pv=10000,i=10,n=10,pmt=NA)
summary(y)

Example output

Amortization Table

          Bal    Int      Prin       PMT
1     9036.93  83.33   -963.07  -1046.40
2     8065.83  75.31   -971.10  -1046.40
3     7086.64  67.22   -979.19  -1046.40
4     6099.30  59.06   -987.35  -1046.40
5     5103.72  50.83   -995.58  -1046.40
6     4099.85  42.53  -1003.87  -1046.40
7     3087.61  34.17  -1012.24  -1046.40
8     2066.94  25.73  -1020.67  -1046.40
9     1037.76  17.22  -1029.18  -1046.40
10       0.00   8.65  -1037.76  -1046.40
Total         464.04 -10000.00 -10464.04

financial documentation built on May 30, 2017, 2:35 a.m.