31 lines
		
	
	
	
		
			827 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			827 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" dir="ltr">
 | |
|     <head>
 | |
|         <meta charset="utf-8">
 | |
|         <title>Linear regression</title>
 | |
| 
 | |
|         <!-- via CDN -->
 | |
|         <script src="https://cdn.jsdelivr.net/npm/mainloop.js@latest/build/mainloop.min.js"></script>
 | |
| 
 | |
|         <script
 | |
|   src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
 | |
|   integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
 | |
|   crossorigin="anonymous"></script>
 | |
| 
 | |
|         <script defer src="js/main.js" charset="utf8"></script>
 | |
| 
 | |
|         <style>
 | |
|             body,html{
 | |
|                 margin:0px;
 | |
|                 padding:0px;
 | |
|                 height:100%;
 | |
|                 width:100%;
 | |
|                 display:block;
 | |
|                 overflow-y:hidden;
 | |
|             }
 | |
|         </style>
 | |
|     </head>
 | |
|     <body>
 | |
|         <canvas id="canvas"></canvas>
 | |
|     </body>
 | |
| </html>
 | 
