<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Fast stepwise regression on linked data</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Barbara Z_ogala-Siudem</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Szymon Jaroszewicz</string-name>
          <email>s.jaroszewicz@ipipan.waw.pl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Institute of Computer Science, Polish Academy of Sciences Warsaw</institution>
          ,
          <country country="PL">Poland</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>National Institute of Telecommunications Warsaw</institution>
          ,
          <country country="PL">Poland</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Systems Research Institute, Polish Academy of Sciences Warsaw</institution>
          ,
          <country country="PL">Poland</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The main focus of research in machine learning and statistics is on building more advanced and complex models. However, in practice it is often much more important to use the right variables. One may hope that recent popularity of open data would allow researchers to easily nd relevant variables. However current linked data methodology is not suitable for this purpose since the number of matching datasets is often overwhelming. This paper proposes a method using correlation based indexing of linked datasets which can signi cantly speed up feature selection based on classical stepwise regression procedure. The technique is e cient enough to be applied at interactive speed to huge collections of publicly available linked open data.</p>
      </abstract>
      <kwd-group>
        <kwd>stepwise feature selection</kwd>
        <kwd>linked open data</kwd>
        <kwd>spatial indexing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>It is well known from statistical modeling practice that including the right
variables in the model is often more important than the type of model used.
Unfortunately analysts have to rely on their experience and/or intuition as there are
not many tools available to help with this important task.</p>
      <p>
        The rising popularity of linked open data could o er a solution to this
problem. The researcher would simply link their data with other variables
downloaded from a public database and use them in their model. Currently, several
systems exist which allow for automatically linking publicly available data ([
        <xref ref-type="bibr" rid="ref11 ref17 ref18 ref2 ref5">2,
5, 11, 17, 18</xref>
        ]). Unfortunately, those systems are not always su cient. Consider,
for example, a researcher who wants to nd out which factors a ect some
variable available for several countries for several consecutive years. The researcher
could then link publicly available data (from, say, Eurostat [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] or the United
Nations [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]) by country and year to the target modeling variable and build a
linear regression model using some method of variable selection. Unfortunately,
such an approach is not practical since there are literally millions of variables
available from Eurostat alone and most of them can be linked by country and
year. As a result, several gigabytes of data would have to be downloaded and
used for modeling.
      </p>
      <p>This paper proposes an alternative approach: linking a new variable is
performed not only by some key attributes but also based on the correlation with
the target variable. We describe how to use spatial indexing techniques to nd
correlated variables quickly. Moreover, we demonstrate how such an index can
be used to build stepwise regression models commonly used in statistics.</p>
      <p>
        To the best of our knowledge no current system o ers such functionality. The
closest to the approach proposed here is the Google Correlate service [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. It
allows the user to submit a time series and nd Google query whose frequency is
most correlated with it. However Google Correlate is currently limited to search
engine query frequencies and cannot be used with other data such as publicly
available government data collections. Moreover it allows only for nding a single
correlated variable, while the approach proposed here allows for automatically
building full statistical models. In other words our contribution adds a statistical
model construction step on top of a correlation based index such as Google
Correlate.
      </p>
      <p>
        There are several approaches to speeding up variable selection in stepwise
regression models such as streamwise regression [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] or VIF regression [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. None
of them is, however, capable of solving the problem considered here: allowing
an analyst to build a model automatically selecting from millions of available
variables at interactive speeds.
      </p>
      <p>Let us now introduce the notation. We will not make a distinction between
a random variable and a vector of data corresponding to it. Variables/vectors
will be denoted with lowercase letters x, y; x is the mean of x and cor(x; y)
correlation between x and y. Matrices (sets of variables) will be denoted with
boldface uppercase letters, e.g. X. The identity matrix is denoted by I and XT
is the transpose of the matrix X.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Finding most correlated variables. Multidimensional indexing</title>
      <p>
        The simplest linear regression model we may think of is a model with only one
variable: the one which is most correlated with the target. An example system
building such models in the open data context is the Google Correlate tool [
        <xref ref-type="bibr" rid="ref14 ref21 ref3">3, 14,
21</xref>
        ]. It is based on the fact that nding a variable with the highest correlation is
equivalent to nding a nearest neighbor of the response variable after appropriate
normalization of the vectors.
      </p>
      <p>In this paper we will normalize all input vectors (potential variables to be
included in the model) as x0 = kxx xxk . That way, each vector is centered at zero
and has unit norm, so we can think of them as of points on an (n 1)-sphere. It
is easy to see that the correlation coe cient of two vectors x, y is simply equal
to the dot product of their normalized counterparts</p>
      <p>
        cor(x; y) = hx0; y0i:
Note that our normalization is slightly di erent from the one used in [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], but
has the advantage that standard multidimensional indices can be used. After
normalization the Euclidean distance between two vectors is directly related to
their correlation coe cient
kx
yk = p2
2cor(x; y):
(1)
      </p>
      <p>The above equation gives us a tool to quickly nd variables most correlated
with a given variable, which is simply the one which is closest to it in the usual
geometrical sense. Moreover to nd all variables x whose correlation with y is at
least one needs to nd all x's for which kx yk 6 p2 2 .</p>
      <p>The idea now is to build an index containing all potential variables and
use that index to nd correlated variables quickly. Thanks to the relationship
with Euclidean distance, multidimensional indexing can be used for the purpose.
Building the index may be time consuming, but afterwards, nding correlated
variables should be very fast. We now give a brief overview of the indexing
techniques.</p>
      <p>Multidimensional indexing. Multidimensional indices are data structures
designed to allow for rapidly nding nearest neighbors in n-dimensional spaces.
Typically two types of queries are supported. Nearest neighbor queries return k
vectors in the index which are closest to the supplied query vector. Another type
of query is range query which returns all vectors within a given distance from
the query.</p>
      <p>
        Due to space limitations we will not give an overview of multidimensional
techniques, see e.g. [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. Let us only note that Google Correlate [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] uses a
custom designed technique called Asymmetric Hashing [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        In the current work we use Ball Trees [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] implemented in the Python
Scikit.Learn package. Ball Trees are supposed to work well even for high
dimensional data and return exact solutions to both nearest neighbor and range
queries. For faster, approximate searches we use the randomized kd-trees
implemented in the FLANN package [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] (see also [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]).
      </p>
      <p>Of course nding most correlated variables has already been implemented by
Google Correlate. In the next section we extend the technique to building full
regression models, which is the main contribution of this paper.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Stepwise and stagewise regression</title>
      <p>In this section we will describe classical modeling techniques: stagewise and
stepwise linear regression and show how they can be e ciently implemented in
the open data context using a multidimensional index.</p>
      <p>
        Stagewise regression is a simple algorithm for variable selection in a regression
model which does not take into account interactions between predictor variables,
see e.g. [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] for a discussion. The algorithm is shown in Figure 1. The idea is
simple: at each step we add the variable most correlated with the residual of the
current model. The initial residual is the target variable y and the initial model
matrix X contains just a column of ones responsible for the intercept term. The
matrix HX = X(XT X) 1XT is the projection matrix on X, see [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] for details.
      </p>
      <p>Algorithm: Stagewise
1) r y; X (1; 1; : : : ; 1)T ,
2) Find a variable xi most correlated with r,
3) Add xi to the model: X [Xjxi],
4) Compute the new residual vector r = y
5) If the model has improved: goto 2.</p>
      <p>HXy,</p>
      <p>
        The stopping criterion in step 5 is based on the residual sum of squares:
RSS = rT r = k k , where r is the vector of residuals (di erences between true
r 2
and predicted values). The disadvantage of RSS is that adding more variables
can only decrease the criterion. To prevent adding too many variables to the
model additional penalty terms are included, the two most popular choices are
Akaike's AIC [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and Schwarz's BIC [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. Here we simply set a hard limit on the
number of variables included in the model.
      </p>
      <p>The advantage of stagewise regression is its simplicity, one only needs to
compute the correlation of all candidate variables with the residual r. Thanks
to this, one can easily implement stagewise regression using techniques from
Section 2, so the approach can trivially be deployed in the proposed setting.</p>
      <p>The disadvantage of stagewise regression is that is does not take into account
correlations between the new variable and variables already present in the model.
Consider an example dataset given in Table 1. The dataset has three predictor
variables x1; x2; x3 and a target variable y. The data follows an exact linear
relationship: y = 3x1 + x2. It can be seen that the variable most correlated with
y is x1, which will be the rst variable included in the model. The residual vector
of that model, denoted r1, is also given in the table. Clearly the variable most
correlated with r1 is x3 giving a model y = 0 + 1x1 + 2x3. But the true model
does not include x3 at all! The reason is that x3 is highly correlated with x1,
and this correlation is not taken into account by stagewise regression.</p>
      <p>
        An improvement on stagewise regression is stepwise regression proposed in
1960 by Efroymson [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. The algorithm is given in Figure 2. The main idea is that
at each step we add each variable to the model, compute the actual residual sum
of squares (which takes into account correlations between variables) and add the
variable which gives the best improvement.
      </p>
      <p>Algorithm: Stepwise
1) r y; X (1; 1; : : : ; 1)T ,
2) For each variable xi:
compute the residual of the model obtained by adding xi to the current model:
ri = y H[Xjxi]y
3) Find xi , where i = arg min riT ri,
4) If model: [Xjxi ] is better than X:
1. Add xi to the model X [Xjxi ]
2. goto 2).</p>
      <p>In the example stepwise regression will choose the correct variables x1 and
then x2, which is the best possible model. In general, stepwise regression builds
better models than stagewise regression, but is more costly computationally. At
each step we need to compute the RSS for several regression models, which is
much more expensive than simply computing correlations.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Fast stepwise selection based on multidimensional indices</title>
      <p>Stepwise regression is known to give good predictions, however when the number
of attributes is large, it becomes ine cient; building a model consisting of many
variables when we need to search through several millions of candidates, as is
often the case with linked data, would be extremely time consuming, since at
each step we would need to compute RSS of millions of multidimensional models.</p>
      <p>In this section we present the main contribution of this paper, namely an
approach to speed up the process using a multidimensional index. Our goal is
to decrease the number of models whose RSS needs to be computed at each
step through e cient ltering based on a multidimensional index. Assume that
k 1 variables are already in a model and we want to add the k-th one. Let
Xk 1 denote the current model matrix. The gist of our approach is given in the
following theorem.</p>
      <p>Theorem 1. Assume that the variables x1; : : : ; xk 1 currently in the model are
orthogonal, i.e. Xk 1T Xk 1 = I and let r = y HXk 1 y denote the residual
vector of the current model. Consider two variables xk and xk0 . Denote ci;k =
cor(xi; xk), ci;k0 = cor(xi; xk0 ), cr;k = cor(r; xk), cr;k0 = cor(r; xk0 ). Let Xk =
[Xk 1jxk] and Xk0 = [Xk 1jxk0 ]. Further, let rk = y HXk y be the residual
vector of the regression model obtained by adding variable xk to the current
model, and let rk0 be de ned analogously. Then, krk0 k2 6 krkk2 implies
max fjc1;k0 j; : : : ; jck 1;k0 j; jcr;k0 jg &gt; q1</p>
      <p>The theorem (the proof can be found in the Appendix) gives us a way to
implement a more e cient construction of regression models through the
stepwise procedure. Each step is implemented as follows. We rst nd a variable
xk which is most correlated with the current residual r. Then, using the right
hand side of Equation 2 we nd the lower bound for correlations of the potential
new variable with the current residual and all variables currently in the model.
Then, based on Equation 1, we can use k range queries (see Section 2) on the
spatial index to nd all candidate variables. Steps 2 and 3 of Algorithm 2 are
then performed only for variables returned by those queries. Since step 2 is the
most costly step of the stepwise procedure this can potentially result in huge
speedups. The theorem assumes x1; : : : ; xk 1 to be orthogonal which is not
always the case. However we can always orthogonalize them before applying the
procedure using e.g. the QR factorization.</p>
      <p>The nal algorithm is given in Figure 3. It is worth noting that (when exact
index is used like the Ball Tree) algorithm described in Figure 3 gives the same
results as stepwise regression performed on full, joined data.</p>
      <p>
        Algorithm: Fast stepwise based on multidimensional index
1) r y; X (1; 1; : : : ; 1)T
2) Find a variable x1 most correlated with r # nearest neighbor query
3) Add x1 to the model: X [Xjx1]
4) Compute the new residual vector r = y HXy
5) Find a variable xk most correlated with r
6) C fxkg # the set of candidate variables
7) q1 c21;k ::: jccr2k;k1j;k+(k 1)cr2;k
8) For i 1; : : : ; k 1:
9) C C [ all variables x such that kx xik2 6 2 2 # range queries
10) C C [ all variables x such that kr xik2 6 2 2 # range query
11) Find the best variable xi in C using stepwise procedure, add it to the model
12) If the model has improved signi cantly: goto 4).
We will now present an experimental evaluation of the proposed approach. First
we give an illustrative example, then examine the e ciency.
The following example is based on a part of the Eurostat database [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The
response variable is the infant mortality rate in each country and the predictors
are variables present in a part of the database concerning `Population and social
conditions', mainly `Health'. The combined data set consists of 736 observations
(data from 1990 till 2012 for each of the 32 European countries) and 164460
variables. We decided to select two variables for the model. Missing values in
the time series were replaced with the most previous available value or with the
next one if the previous did not exist.
      </p>
      <p>Exact stepwise regression (produced with regular stepwise procedure or the
Ball Tree index) resulted in the following two variables added to the model:
{ ,,Causes of death by NUTS 2 regions - Crude death rate (per 100,000
inhabitants) for both men an women of age 65 or older, due to Malignant
neoplasms, stated or presumed to be primary, of lymphoid, haematopoietic
and related tissue"
{ ,,Health personnel by NUTS 2 regions - number of physiotherapists per
inhabitant".</p>
      <p>The variables themselves are not likely to be directly related to the target,
but are correlated with important factors. The rst variable is most probably
correlated with general life expectancy which re ects the e ciency of the
medical system. The number of physiotherapists (second variable) is most probably
correlated with the number of general health personnel per 100,000 inhabitants.
Dealing with correlated variables is an important topic of the future research.</p>
      <p>An analogous result was obtained using an approximate index implemented in
the FLANN package. Due to the fact that the results are approximated, slightly
di erent attributes were selected but the RSS remained comparable. Moreover,
building the model using the Ball Tree index was almost 8 times faster than
stepwise regression on full data, and using the FLANN index more than 400
times faster!
5.2</p>
      <p>
        Performance evaluation
To assess performance we used a part of the Eurostat [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] database. The response
variable was again the infant mortality rate and predictors came from the
`Population and social conditions' section, mainly: `Health', `Education and training'
and `Living conditions and welfare'. This resulted in a joined dataset consisting
of 736 observations (data from 1990 till 2012 for 32 European countries) and
over 200; 000 attributes.
      </p>
      <p>The algorithms used in comparison are regular stepwise regression on full
joined data (`regular step'), fast stepwise regression using two types of spatial
indices and stepwise regression built using the algorithm in Figure 3 with spatial
queries answered using brute force search (`step with no index').</p>
      <p>The rst two charts in Figure 4 show how the time to build a model with
3 or 5 variables changes with growing number of available attributes (i.e. the
]
[se 20
m
it
size of full joined data). The second two charts show how the time changes with
growing number of observations (records). To obtain the smaller datasets we
simply drew samples of the attributes or of the observations. We can see that the
best times can be obtained using FLANN index. It is worth noting that FLANN
gives approximate, yet quite precise results. Slower, but still reasonably fast
model construction can be obtained by using Ball Tree index, which guarantees
the solution is exact. All charts show that the bigger the data the bigger the
advantage from using the algorithm shown in Figure 3.
6</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusions</title>
      <p>The paper presents a method for building regression model on linked open data
at interactive speeds. The method is based on the use of spatial indexes for e
cient nding of candidate variables. The method has been evaluated
experimentally on Eurostat data and demonstrated to perform much faster than standard
regression implementations.
7</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgements</title>
      <p>The paper is co-founded by the European Union from resources of the European
Social Fund. Project PO KL ,,Information technologies: Research and their
interdisciplinary applications", Agreement UDA-POKL.04.01.01-00-051/10-00.</p>
    </sec>
    <sec id="sec-7">
      <title>Proof of Theorem 1</title>
      <p>To prove Theorem 1 we need to introduce two lemmas.
decreases the RSS by (xxkTkT PPkk 11xyk)2 , where Pk 1 := I</p>
      <p>Proof. xk can be expressed as a sum of vectors in the plane spanned by Xk 1
and perpendicular to that plane: xk = HXk 1 xk + Pk 1xk: If xk is a linear
function of columns of Xk 1, adding it to the model gives no decrease of RSS,
so we only need to consider Pk 1xk. It is easy to see that if xk is uncorrelated
with each column of Xk 1, adding it to the model decreases RSS by (xxkTkT xyk)2 . This
is because the RSS is then equal to yT Pky, where Pk = Pk 1 xk(xkT xk) 1xkT .
Combining those facts with symmetry and idempotency of Pk 1, RSS decreases
by</p>
      <p>((Pk 1xk)T y)2
(Pk 1xk)T Pk 1xk
=</p>
      <p>(xkT PkT 1y)2
xkT PkT 1Pk 1xk
=
(xkT Pk 1y)2
xkT Pk 1xk
:
Lemma 2. Assume now that Xk 1 is orthogonal. If adding xk0 to the model
gives lower RSS than adding xk, then:
2
cr;k
: : :
1
jci;k0 j &lt; q1
and we need to show that this implies jcr;k0 j &gt; p1 c21;k ::: jccr2k;kj1;k+(k 1)cr2;k :
Notice rst that the inequalities (4) imply
2
c1;k0
: : :
2
c1;k
: : :</p>
      <p>: : :
c2k 1;k + (k
c2k 1;k
Proof. From Lemma 1 we know that if xk0 causes greater decrease in RSS then
(3)
(4)
We also know that (since vectors are normalized) cr2;k = (xkT r)2 = (xkT Pk 1y)2;
and using orthogonality of Xk 1 we get
xkT Pk 1xk = xkT (I
= xkT xk</p>
      <p>Xk 1(XkT 1Xk 1) 1XkT 1)xk = xkT (I
(x1T xk)2 : : : (xkT 1xk)2 = 1 c21;k</p>
      <p>Xk 1XkT 1)xk =
: : : c2k 1;k;
which proves the lemma.</p>
      <p>Proof (of Theorem 1). If for any i = 1; : : : ; k 1: jci;k0 j &gt; p
then the inequality is true. Otherwise for all i = 1; : : : ; k
jcr;kj
1 c21;k ::: c2k 1;k+(k 1)cr2;k
1:
Using this inequality and Lemma 2 we get the desired result:
2 2 1
cr;k0 &gt; cr;k 1</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>1. Eurostat. http://ec.europa.eu/eurostat.</mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>2. Fegelod. http://www.ke.tu-darmstadt.de/resources/fegelod.</mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>3. Google correlate. http://www.google.com/trends/correlate.</mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>H.</given-names>
            <surname>Akaike</surname>
          </string-name>
          .
          <article-title>A new look at the statistical model identi cation</article-title>
          .
          <source>IEEE Transactions on Automatic Control</source>
          , AC-
          <volume>19</volume>
          (
          <issue>6</issue>
          ):
          <volume>716</volume>
          {
          <fpage>723</fpage>
          ,
          <year>1974</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>C.</given-names>
            <surname>Bizer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Heath</surname>
          </string-name>
          , and
          <string-name>
            <given-names>T.</given-names>
            <surname>Berners-Lee</surname>
          </string-name>
          .
          <article-title>Linked data - the story so far</article-title>
          .
          <source>International Journal on Semantic Web and Information Systems (IJSWIS)</source>
          ,
          <volume>5</volume>
          (
          <issue>3</issue>
          ):1{
          <fpage>22</fpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>6. United Nations Statistics Division. Undata. http://data.un.org.</mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Efroymson</surname>
          </string-name>
          .
          <article-title>Multiple Regression Analysis</article-title>
          . Wiley,
          <year>1960</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>A.</given-names>
            <surname>Gersho</surname>
          </string-name>
          and
          <string-name>
            <given-names>R. M.</given-names>
            <surname>Gray</surname>
          </string-name>
          .
          <source>Vector Quantization and Signal Compression</source>
          . Springer,
          <year>1992</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>T.</given-names>
            <surname>Hastie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Tibshirani</surname>
          </string-name>
          , and
          <string-name>
            <given-names>J.</given-names>
            <surname>Friedman</surname>
          </string-name>
          .
          <source>The Elements of Statistical Learning</source>
          . Springer Series in Statistics. Springer New York Inc., New York, NY, USA,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10. T. Hastie,
          <string-name>
            <given-names>R.</given-names>
            <surname>Tibshirani</surname>
          </string-name>
          , and
          <string-name>
            <given-names>J.</given-names>
            <surname>Friedman</surname>
          </string-name>
          .
          <source>The Elements of Statistical Learning: Data Mining, Inference, and Prediction</source>
          . Springer-Verlag,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11. T. Heath and Bizer C.
          <article-title>Linked Data: Evolving the Web into a Global Data Space</article-title>
          .
          <source>Synthesis Lectures on the Semantic Web: Theory and Technology. Morgan &amp; Claypool, 1 edition</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>A. M. Kibriya</surname>
            and
            <given-names>E. Frank.</given-names>
          </string-name>
          <article-title>An empirical comparison of exact nearest neighbour algorithms</article-title>
          .
          <source>In PKDD</source>
          , pages
          <volume>140</volume>
          {
          <fpage>151</fpage>
          . Springer,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>D.</given-names>
            <surname>Lin</surname>
          </string-name>
          and
          <string-name>
            <given-names>D. P.</given-names>
            <surname>Foster</surname>
          </string-name>
          .
          <article-title>Vif regression: A fast regression algorithm for large data</article-title>
          .
          <source>In ICDM '09. Ninth IEEE International Conference on Data Mining</source>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>M. Mohebbi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Vanderkam</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Kodysh</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Schonberger</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Choi</surname>
            , and
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          . Google correlate whitepaper.
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <given-names>M.</given-names>
            <surname>Muja</surname>
          </string-name>
          and
          <string-name>
            <given-names>D.</given-names>
            <surname>Lowe</surname>
          </string-name>
          . FLANN - Fast
          <source>Library for Approximate Nearest Neighbors</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <given-names>M.</given-names>
            <surname>Muja</surname>
          </string-name>
          and
          <string-name>
            <given-names>D. G.</given-names>
            <surname>Lowe</surname>
          </string-name>
          .
          <article-title>Scalable nearest neighbor algorithms for high dimensional data</article-title>
          .
          <source>IEEE Trans. on Pattern Analysis and Machine Intelligence</source>
          ,
          <volume>36</volume>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <given-names>H.</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Explain-a-lod: using linked open data for interpreting statistics</article-title>
          .
          <source>In IUI</source>
          , pages
          <volume>313</volume>
          {
          <fpage>314</fpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <given-names>H.</given-names>
            <surname>Paulheim</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Fu</surname>
          </string-name>
          <article-title>rnkranz. Unsupervised generation of data mining features from linked open data</article-title>
          .
          <source>Technical Report TUD-KE-2011-2</source>
          , Knowledge Engineering Group, Technische Universita
          <source>t Darmstadt</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <given-names>H.</given-names>
            <surname>Samet</surname>
          </string-name>
          .
          <article-title>The Design and Analysis of Spatial Data Structures</article-title>
          .
          <string-name>
            <surname>Addison-Wesley Longman</surname>
          </string-name>
          Publishing Co., Inc., Boston, MA, USA,
          <year>1990</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20. G. Schwarz.
          <article-title>Estimating the dimension of a model</article-title>
          .
          <source>The Annals of Statistics</source>
          ,
          <volume>6</volume>
          (
          <issue>2</issue>
          ):
          <volume>461</volume>
          {
          <fpage>464</fpage>
          ,
          <year>1978</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <given-names>D.</given-names>
            <surname>Vanderkam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Schonberger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Rowley</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Kumar</surname>
          </string-name>
          .
          <source>Technical report: Nearest neighbor search in google correlate</source>
          .
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>J. Zhou</surname>
            ,
            <given-names>D. P.</given-names>
          </string-name>
          <string-name>
            <surname>Foster</surname>
            ,
            <given-names>R. A.</given-names>
          </string-name>
          <string-name>
            <surname>Stine</surname>
            , and
            <given-names>L. H.</given-names>
          </string-name>
          <string-name>
            <surname>Ungar</surname>
          </string-name>
          .
          <article-title>Streamwise feature selection</article-title>
          .
          <source>J. Mach. Learn. Res.</source>
          ,
          <volume>7</volume>
          :
          <year>1861</year>
          {1885,
          <year>December 2006</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>