You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2018/03/12 18:01:40 UTC

[1/2] lucene-solr:branch_7_3: SOLR-11947: Remove place holder for lerp

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_3 4a0d96974 -> 7046b9891


SOLR-11947: Remove place holder for lerp


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/df10445c
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/df10445c
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/df10445c

Branch: refs/heads/branch_7_3
Commit: df10445cc6625237b598a2f4ea7d94bf2ddaf98c
Parents: 4a0d969
Author: Joel Bernstein <jb...@apache.org>
Authored: Mon Mar 12 13:53:58 2018 -0400
Committer: Joel Bernstein <jb...@apache.org>
Committed: Mon Mar 12 13:58:58 2018 -0400

----------------------------------------------------------------------
 solr/solr-ref-guide/src/stream-evaluator-reference.adoc | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/df10445c/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-evaluator-reference.adoc b/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
index 8c46704..2454e19 100644
--- a/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
@@ -1202,8 +1202,6 @@ The `length` function returns the length of a numeric array.
 [source,text]
 length(numericArray)
 
-== lerp (TOD0)
-
 == loess
 
 The `leoss` function is a smoothing curve fitter which uses a https://en.wikipedia.org/wiki/Local_regression[local regression] algorithm.


[2/2] lucene-solr:branch_7_3: SOLR-11947: Remove place holders for documentation that will not be complete for 7.3.

Posted by jb...@apache.org.
SOLR-11947: Remove place holders for documentation that will not be complete for 7.3.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/7046b989
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/7046b989
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/7046b989

Branch: refs/heads/branch_7_3
Commit: 7046b9891a34850ba3b619969759104c2514ef5e
Parents: df10445
Author: Joel Bernstein <jb...@apache.org>
Authored: Mon Mar 12 13:48:22 2018 -0400
Committer: Joel Bernstein <jb...@apache.org>
Committed: Mon Mar 12 14:00:32 2018 -0400

----------------------------------------------------------------------
 .../src/stream-evaluator-reference.adoc         | 40 --------------------
 1 file changed, 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7046b989/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-evaluator-reference.adoc b/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
index 2454e19..60e826e 100644
--- a/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluator-reference.adoc
@@ -92,8 +92,6 @@ add(fieldA,div(fieldA,fieldB)) // value of fieldA + (value of fieldA / value of
 add(fieldA,if(gt(fieldA,fieldB),fieldA,fieldB)) // if fieldA > fieldB then fieldA + fieldA, else fieldA + fieldB
 ----
 
-== akima (TODO)
-
 == analyze
 
 The `analyze` function analyzes text using a Lucene/Solr analyzer and returns a list of tokens
@@ -294,9 +292,6 @@ ceil(fieldA) // returns the next highest whole number for fieldA.
 if(gt(fieldA,fieldB),ceil(fieldA),ceil(fieldB)) // if fieldA > fieldB then return the ceil of fieldA, else return the ceil of fieldB.
 ----
 
-
-== chiSquareDataSet (TODO)
-
 == col
 
 The `col` function returns a numeric array from a list of Tuples. The `col`
@@ -524,10 +519,6 @@ A double: the cumulative probability.
 [source,text]
 cumulativeProbability(normalDistribution(500, 25), 502) // Returns the cumulative probability of the random sample 502 in a normal distribution with a mean of 500 and standard deviation of 25.
 
-
-== density (TODO)
-
-
 == derivative
 
 The `derivative` function returns the https://en.wikipedia.org/wiki/Derivative[derivative] of a function. The derivative function
@@ -860,9 +851,6 @@ A double.
 factorial(100) //Computes the factorial of 100
 ----
 
-== featureSelect (TODO)
-
-
 == finddelay
 
 The `finddelay` function performs a cross-correlation between two numeric arrays and returns the delay.
@@ -918,8 +906,6 @@ A list of tuples containing the frequency information for each discrete value.
 freqTable(integerArray)
 ----
 
-== fuzzyKmeans (TODO)
-
 == gammaDistribution
 
 The `gammaDistribution` function returns a https://en.wikipedia.org/wiki/Gamma_distribution[gamma probability distribution] based on its parameters. This function is part of the
@@ -998,10 +984,6 @@ getAttributes(matrix)
 
 map : The map of attributes.
 
-== getCentroids (TODO)
-
-== getClusters (TODO)
-
 == getColumnLabels
 
 The `getColumnLabels` function returns the columns labels of a matrix. The column labels can be optionally
@@ -1019,8 +1001,6 @@ getColumnLabels(matrix)
 
 string array : The labels for each column in the matrix
 
-== getMembershipMatrix (TODO)
-
 == getRowLabels
 
 The `getRowLabels` function returns the row labels of a matrix. The row labels can be optionally
@@ -1268,10 +1248,6 @@ A probability distribution function.
 [source,text]
 logNormalDistribution(.3, .0)
 
-== kmeans (TODO)
-
-== knn (TODO)
-
 == kolmogorovSmirnov
 
 The `kolmogorovSmirnov` function performs a https://en.wikipedia.org/wiki/Kolmogorov%E2%80%93Smirnov_test[Kolmogorov Smirnov test],
@@ -1335,9 +1311,6 @@ lteq(fieldA,val(foo)) fieldA <= "foo"
 lteq(add(fieldA,fieldB),6) // fieldA + fieldB <= 6
 ----
 
-
-== mannWhitney (TODO)
-
 == markovChain
 
 The `markovChain` function can be used to perform https://en.wikipedia.org/wiki/Markov_chain[Markov Chain] simulations.
@@ -1534,11 +1507,6 @@ mult(fieldA,div(fieldA,fieldB)) // value of fieldA * (value of fieldA / value of
 mult(fieldA,if(gt(fieldA,fieldB),fieldA,fieldB)) // if fieldA > fieldB then fieldA * fieldA, else fieldA * fieldB
 ----
 
-
-== multiKmeans (TODO)
-
-== multiVariateNormalDistribution (TODO)
-
 == normalDistribution
 
 The `normalDistribution` function returns a https://en.wikipedia.org/wiki/Normal_distribution[normal probability distribution]
@@ -1645,8 +1613,6 @@ or(and(fieldA,fieldB),fieldC) // (fieldA && fieldB) || fieldC
 or(fieldA,fieldB,fieldC,and(fieldD,fieldE),fieldF)
 ----
 
-== pairedTtest (TODO)
-
 == poissonDistribution
 
 The `poissonDistribution` function returns a https://en.wikipedia.org/wiki/Poisson_distribution[poisson probability distribution]
@@ -2268,10 +2234,6 @@ sumSq(numericArray)
 
 numeric : result of the sumSq calculation
 
-== termVectors (TODO)
-
-== topFeatures (TODO)
-
 == transpose
 
 The `transpose` function https://en.wikipedia.org/wiki/Transpose[transposes] a matrix .
@@ -2310,8 +2272,6 @@ triangularDistribution(10, 15, 20) // A triangular distribution with a low value
 
 Probability distribution function
 
-== ttest (TODO)
-
 == uniformDistribution
 
 The `uniformDistribution` function returns a https://en.wikipedia.org/wiki/Uniform_distribution_(continuous)[continuous uniform probability distribution]