119 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| 
 | |
| <html lang="zh-CN">
 | |
| 	
 | |
| 	<head>
 | |
| 
 | |
| 		<meta charset=“UTF-8”>
 | |
| 
 | |
| 		<link rel="stylesheet" type="text/css" href="../stylesheet.css">
 | |
| 
 | |
| 	</head>
 | |
| 
 | |
| 	<body>
 | |
| 			
 | |
| 		<table style="width: 100%">
 | |
| 
 | |
| 			<tr>
 | |
| 				
 | |
| 				<th>特征变量名</th>
 | |
| 				
 | |
| 				<th>信息价值</th>
 | |
| 				
 | |
| 				<th>方差扩大因子</th>
 | |
| 				
 | |
| 				<th>回归系数</th>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 			<tr>
 | |
| 				
 | |
| 				<td>RevolvingUtilizationOfUnsecuredLines</td>
 | |
| 				
 | |
| 				<td>1.04</td>
 | |
| 				
 | |
| 				<td>1.20</td>
 | |
| 				
 | |
| 				<td>0.72</td>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 			<tr>
 | |
| 				
 | |
| 				<td>NumberOfTimes90DaysLate</td>
 | |
| 				
 | |
| 				<td>0.83</td>
 | |
| 				
 | |
| 				<td>1.19</td>
 | |
| 				
 | |
| 				<td>0.64</td>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 			<tr>
 | |
| 				
 | |
| 				<td>NumberOfTime60-89DaysPastDueNotWorse</td>
 | |
| 				
 | |
| 				<td>0.57</td>
 | |
| 				
 | |
| 				<td>1.18</td>
 | |
| 				
 | |
| 				<td>0.55</td>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 			<tr>
 | |
| 				
 | |
| 				<td>NumberOfTime30-59DaysPastDueNotWorse</td>
 | |
| 				
 | |
| 				<td>0.67</td>
 | |
| 				
 | |
| 				<td>1.17</td>
 | |
| 				
 | |
| 				<td>0.69</td>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 			<tr>
 | |
| 				
 | |
| 				<td>Age</td>
 | |
| 				
 | |
| 				<td>0.23</td>
 | |
| 				
 | |
| 				<td>1.08</td>
 | |
| 				
 | |
| 				<td>0.55</td>
 | |
| 				
 | |
| 			</tr>
 | |
| 			
 | |
| 		</table>
 | |
| 
 | |
| 		<script>
 | |
| 			
 | |
| 			window.addEventListener('message', function(event) {
 | |
| 
 | |
| 				if (event.data.action === 'requestHeight') {
 | |
| 
 | |
| 					const iframeId = event.data.iframeId;
 | |
| 
 | |
| 					adjustIframeHeight(iframeId);
 | |
| 
 | |
| 				}
 | |
| 
 | |
| 			}, false);
 | |
| 
 | |
| 			function adjustIframeHeight(iframeId) {
 | |
| 
 | |
| 				const height = document.documentElement.scrollHeight + 16;
 | |
| 
 | |
| 				console.log(height)
 | |
| 
 | |
| 				window.parent.postMessage({action: 'responseHeight', iframeId: iframeId, height: height}, '*');
 | |
| 
 | |
| 			}
 | |
| 
 | |
| 		</script>
 | |
| 
 | |
| 	</body>
 | |
| 
 | |
| </html> |