function calculateMortgageData(interest, payments, amount) {
let mortgageRemaining = amount;
let totalInterestPaid = 0;
let totalPrincipalPaid = 0;
const monthlyMortgagePayment = financial.pmt(interest, payments, amount) * -1;
const mortgageArray = d3.range(payments).map((d,i) => {
const monthlyInterestPayment = financial.ipmt(interest, i + 1, payments, amount) * -1;
const monthlyPrincipalPayment = monthlyMortgagePayment - monthlyInterestPayment;
mortgageRemaining = mortgageRemaining - monthlyPrincipalPayment;
totalInterestPaid += monthlyInterestPayment;
totalPrincipalPaid += monthlyPrincipalPayment;
return { 'Payment #': (i + 1),
'Year': Math.floor((i + 1) / 12) + 1,
'Monthly Payment': monthlyMortgagePayment,
'Interest Payment': monthlyInterestPayment,
'Percent Interest': monthlyInterestPayment / monthlyMortgagePayment,
'Principal Payment': monthlyPrincipalPayment,
'Percent Principal': monthlyPrincipalPayment / monthlyMortgagePayment,
'Total Interest Paid': totalInterestPaid,
'Total Principal Paid': totalPrincipalPaid,
'Total Amount Paid': totalPrincipalPaid + totalInterestPaid,
'Total Mortgage Remaining': mortgageRemaining
}
});
return mortgageArray
}