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 17:50:04 UTC

lucene-solr:branch_7x: SOLR-11947: Remove place holders for documentation that will not be complete for 7.3.

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 3aad47e79 -> 7c0a00d1c


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/7c0a00d1
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/7c0a00d1
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/7c0a00d1

Branch: refs/heads/branch_7x
Commit: 7c0a00d1caf39ebb914fc515c2174bd39a2a2c0b
Parents: 3aad47e
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 13:48:53 2018 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7c0a00d1/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..66548b4 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
@@ -1270,10 +1250,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],
@@ -1337,9 +1313,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.
@@ -1536,11 +1509,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]
@@ -1647,8 +1615,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]
@@ -2270,10 +2236,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 .
@@ -2312,8 +2274,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]