Edit in JSFiddle

$(document).ready(function () {
   $('#KivaSort').makeKivaTable({
     columns: [{title: "Field Partner Name"},
               {title: "Interest (Portfolio Yield)"},
               null,
               {title: "Location"}]
   });
});
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Basic six-column KivaSort example" />
  <link rel="stylesheet" href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css">

  <meta charset="utf-8">
  <title>Kiva Sort</title>
</head>
<body>
  
  <table id="KivaSort" class="display compact">
    <thead>
        <tr>
          <th>name</th>
          <th>portfolio_yield</th>
          <th>Profitability</th>
          <th>country</th>
        </tr>
     </thead>
    <tbody></tbody>
</table>

 <script
			  src="//code.jquery.com/jquery-3.5.1.min.js"
			  integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
			  crossorigin="anonymous"></script>
  <script src="//cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script>
  <script src="//cristoper.github.io/jquery-KivaSort/kiva_sort.js"></script>
  
</body>
</html>