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 2019/08/21 02:06:13 UTC

[lucene-solr] branch SOLR-13105-visual updated: SOLR-13105: Continued timeseries viz docs11

This is an automated email from the ASF dual-hosted git repository.

jbernste pushed a commit to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/SOLR-13105-visual by this push:
     new fbb7700  SOLR-13105: Continued timeseries viz docs11
fbb7700 is described below

commit fbb7700c7a723de2bbcfc9e40d82da302beacbf8
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Tue Aug 20 22:06:05 2019 -0400

    SOLR-13105: Continued timeseries viz docs11
---
 solr/solr-ref-guide/src/time-series.adoc | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/solr/solr-ref-guide/src/time-series.adoc b/solr/solr-ref-guide/src/time-series.adoc
index d62007b..3004d87 100644
--- a/solr/solr-ref-guide/src/time-series.adoc
+++ b/solr/solr-ref-guide/src/time-series.adoc
@@ -85,13 +85,11 @@ image::images/math-expressions/timeseries1.png[]
 
 == Vectorizing the Time Series
 
-Before a time series result can be operated on by math expressions
- the data will need to be vectorized. Specifically
-in the example above, the aggregation field *avg(close_d)* will need to by moved into an array.
-As described in the Streams and Vectorization section of the user guide, the `col` function can be used
-to copy a numeric column from a list of tuples into an array.
+Before a time series result can be smoothed or modeled the data will need to be vectorized.
+The `col` function can be used
+to copy column of data from a list of tuples into an array.
 
-The expression below demonstrates the vectorization of the *avg(close_d)* field.
+The expression below demonstrates the vectorization of the *date_dt* and *avg(close_d)* field.
 
 image::images/math-expressions/timeseries2.png[]