-
Notifications
You must be signed in to change notification settings - Fork 0
/
split_performing_book.py
57 lines (49 loc) · 2.57 KB
/
split_performing_book.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright (c) 2023 - 2024 Open Risk (https://www.openriskmanagement.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Script used in Step 2 of the Open Risk Academy Course
# https://www.openriskacademy.com/mod/page/view.php?id=754
import os
import pandas as pd
from config import column_names
from utils import load_file
input_directory = "./PARTS/"
output_directory = "./PERF/"
if __name__ == '__main__':
files = os.listdir(input_directory)
input_files = [input_directory + f for f in files if os.path.isfile(input_directory + '/' + f)]
output_files = [output_directory + f for f in files if os.path.isfile(input_directory + '/' + f)]
i = 1
for in_file, out_file in zip(input_files, output_files):
if i > 0:
input_table = load_file(in_file, column_names)
tmp1 = input_table.groupby('LOAN_ID')
output_groups = []
for name, group in tmp1:
delinquencies = set(group['DLQ_STATUS'].values)
modifications = set(group['MOD_FLAG'].values)
zero_balance_codes = set(group['ZERO_BAL_CODE'].values)
# remove loans that have prepaid, have been modified or have been delinquent
if '01' not in zero_balance_codes and 'Y' not in modifications and len(delinquencies) == 1:
output_groups.append(group)
print(in_file, len(output_groups))
if len(output_groups) > 0:
output_table = pd.concat(output_groups)
output_table.to_csv(out_file, sep='|', index=False, header=False)
i += 1