Skip to content

Commit 7d6d3d3

Browse files
committed
research reference added
1 parent fc9dcf6 commit 7d6d3d3

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

benchmarks/.ipynb_checkpoints/cython_least_squares-checkpoint.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:6fec0ff80302cd983b1b3ab4e6653aa12c291ed854c5efd69f28608d4f6af614"
4+
"signature": "sha256:ed0de0773556cdc26dc372038810ad0e5322ec915298a90f2badf09740d856db"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -104,7 +104,9 @@
104104
"![](https://raw.githubusercontent.com/rasbt/python_reference/master/Images/least_squares_vertical.png) \n",
105105
"![](https://raw.githubusercontent.com/rasbt/python_reference/master/Images/least_squares_perpendicular.png) \n",
106106
"\n",
107-
"Here, we will use the more common approach: minimizing the sum of the perpendicular offsets.\n"
107+
"As Michael Burger summarizes it nicely in his article \"[Problems of Linear Least Square Regression - And Approaches to Handle Them](http://www.arsa-conf.com/archive/?vid=1&aid=2&kid=60101-220)\": \"the perpendicular offset method delivers a more precise result but is are more complicated to handle. Therefore normally the vertical offsets are used.\" \n",
108+
"Here, we will also use the method of computing the vertical offsets.\n",
109+
"\n"
108110
]
109111
},
110112
{

benchmarks/cython_least_squares.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:6fec0ff80302cd983b1b3ab4e6653aa12c291ed854c5efd69f28608d4f6af614"
4+
"signature": "sha256:ed0de0773556cdc26dc372038810ad0e5322ec915298a90f2badf09740d856db"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -104,7 +104,9 @@
104104
"![](https://raw.githubusercontent.com/rasbt/python_reference/master/Images/least_squares_vertical.png) \n",
105105
"![](https://raw.githubusercontent.com/rasbt/python_reference/master/Images/least_squares_perpendicular.png) \n",
106106
"\n",
107-
"Here, we will use the more common approach: minimizing the sum of the perpendicular offsets.\n"
107+
"As Michael Burger summarizes it nicely in his article \"[Problems of Linear Least Square Regression - And Approaches to Handle Them](http://www.arsa-conf.com/archive/?vid=1&aid=2&kid=60101-220)\": \"the perpendicular offset method delivers a more precise result but is are more complicated to handle. Therefore normally the vertical offsets are used.\" \n",
108+
"Here, we will also use the method of computing the vertical offsets.\n",
109+
"\n"
108110
]
109111
},
110112
{

0 commit comments

Comments
 (0)