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 org.apache.commons.math3.stat.regression.OLSMultipleLinearRegression; | |
public class LinearRegression { | |
public static void main(String[] args) { | |
double [] y = {-0.48812477, 0.33458213, | |
-0.52754476, -0.79863471, | |
-0.68544309, -0.12970239, | |
0.02355622, -0.31890850, | |
0.34725819, 0.08108851}; | |
double [][] x = {{1,0}, {0,0}, | |
{1,0}, {2,1}, |
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
Properties { | |
$Build_dir = Split-Path $psake.build_script_file | |
$Packages_dir = Join-Path $build_dir 'Packages' | |
$MsDeploy_dir = Join-Path $env:ProgramFiles 'IIS\Microsoft Web Deploy' | |
$SiteName = 'www.example.com' | |
$Package = "$SiteName.zip" | |
$Dest = 'hosting.com' | |
$UserName = 'IIS User Name' | |
$Pwd = 'Secret Password' |