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 01:41:36 UTC

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

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 888d7ea  SOLR-13105: Continued timeseries viz docs7
888d7ea is described below

commit 888d7ea7f300e18920aa8e165378789e202ffbf6
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Tue Aug 20 21:41:30 2019 -0400

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

diff --git a/solr/solr-ref-guide/src/time-series.adoc b/solr/solr-ref-guide/src/time-series.adoc
index a6fc496..84a85ca 100644
--- a/solr/solr-ref-guide/src/time-series.adoc
+++ b/solr/solr-ref-guide/src/time-series.adoc
@@ -78,7 +78,7 @@ When this expression is sent to the `/stream` handler it responds with:
       ...
 ----
 
-Using Zeppelin-Solr this time series can be visualized using a line chart or other visualization.
+Using Zeppelin-Solr this time series can be visualized using a line chart.
 
 image::images/math-expressions/timeseries1.png[]
 
@@ -87,7 +87,7 @@ image::images/math-expressions/timeseries1.png[]
 
 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 count(*) will need to by moved into an array.
+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.