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/22 15:51:44 UTC

[lucene-solr] branch SOLR-13105-visual updated: SOLR-13105: Update search/sample/agg viz

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 3b49b7e  SOLR-13105: Update search/sample/agg viz
3b49b7e is described below

commit 3b49b7e3efe4f9d19777bdaaf8244c16cfcfde09
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Thu Aug 22 11:51:30 2019 -0400

    SOLR-13105: Update search/sample/agg viz
---
 .../src/images/math-expressions/scoring.png        | Bin 0 -> 233255 bytes
 .../images/math-expressions/search-sort-plot.png   | Bin 278066 -> 270565 bytes
 .../src/images/math-expressions/search-sort.png    | Bin 248445 -> 240064 bytes
 solr/solr-ref-guide/src/search-sample.adoc         |  22 ++++++++++++++-------
 4 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/solr/solr-ref-guide/src/images/math-expressions/scoring.png b/solr/solr-ref-guide/src/images/math-expressions/scoring.png
new file mode 100644
index 0000000..9d9ae03
Binary files /dev/null and b/solr/solr-ref-guide/src/images/math-expressions/scoring.png differ
diff --git a/solr/solr-ref-guide/src/images/math-expressions/search-sort-plot.png b/solr/solr-ref-guide/src/images/math-expressions/search-sort-plot.png
index 6a02113..96b0e1d 100644
Binary files a/solr/solr-ref-guide/src/images/math-expressions/search-sort-plot.png and b/solr/solr-ref-guide/src/images/math-expressions/search-sort-plot.png differ
diff --git a/solr/solr-ref-guide/src/images/math-expressions/search-sort.png b/solr/solr-ref-guide/src/images/math-expressions/search-sort.png
index 66f1dd2..2cdfeac 100644
Binary files a/solr/solr-ref-guide/src/images/math-expressions/search-sort.png and b/solr/solr-ref-guide/src/images/math-expressions/search-sort.png differ
diff --git a/solr/solr-ref-guide/src/search-sample.adoc b/solr/solr-ref-guide/src/search-sample.adoc
index b1a6a88..0c211dd 100644
--- a/solr/solr-ref-guide/src/search-sample.adoc
+++ b/solr/solr-ref-guide/src/search-sample.adoc
@@ -38,31 +38,39 @@ image::images/math-expressions/search1.png[]
 
 ==== Searching and Sorting
 
-Once we see the format of the records we can add parameters to the *search* function to begin analyzing
+Once the format of the records is known, parameters can be added to the *search* function to begin analyzing
 the data.
 
-In the example below a search query (q), field list (fl), rows and sort have been added to the search
-function. Now we are searching for records which contain weather in the abstract_t field and returning
-a result set of 500 sorted by a timestamp descending. We have also limited the result set to only three
+In the example below a search query, field list, rows and sort have been added to the search
+function. Now the search is limited to records within a specific time range and returns
+a max result set of 750 records sorted by tdate_dt ascending. We have also limited the result set to three specific
 fields.
 
 image::images/math-expressions/search-sort.png[]
 
 
-Once we have a the data loaded into the table we can switch to a scatter plot of the filesize_d column
+Once we have a the data loaded into the table we can switch to a scatter plot and plot the filesize_d column
 on the *x axis* and the response_d column on the *y axis*.
 
 image::images/math-expressions/search-sort-plot.png[]
 
 This allows us to quickly visualize the relationship between two variables
-select from the a very specific slice of the index. In this example it's the
-500 most recent documents by timestamp, that match the term *weather*.
+selected from the a a specific slice of the index.
 
 === Scoring
 
+The `search` function will score and rank documents when a query is performed on
+a text field. The example below shows an example of this scoring and ranking of results.
+
+image::images/math-expressions/scoring.png[]
+
+
 
 == Sampling
 
+
+
+
 === Univariate Scatter Plots
 
 === Bivariate Scatter Plots