Last active
November 27, 2017 05:41
-
-
Save Himujjal/41db36e9ae25de2f51ec04b65a4c07ea to your computer and use it in GitHub Desktop.
Linear Regression start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='UTF-8'> | |
| <meta name='viewport' content='width=device-width, initial-scale=1.0'> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>a-simple-linear-regression</title> | |
| </head> | |
| <body class="a-simple-linear-regression"> | |
| <% title ="simple-linear-regression"%> | |
| <% include src/components/header.ejs %> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import "../styles/b-multiple-regression.less"; | |
| // Start Writing Javascript below this line | |
| import math from 'mathjs' | |
| import FusionCharts from 'fusioncharts' | |
| require("fusioncharts/fusioncharts.charts")(FusionCharts); | |
| // This is where we will write the algorithms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment