From b9d739327fc265a4ac8f06a016d973afc9b3799c Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Tue, 5 Sep 2017 08:42:00 -0400 Subject: [PATCH 1/2] add description of 'standardized' output --- doc/02_moran.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/02_moran.md b/doc/02_moran.md index e83c2f1..a05d79a 100644 --- a/doc/02_moran.md +++ b/doc/02_moran.md @@ -102,7 +102,7 @@ A table with the following columns. | quads | TEXT | Classification of geometry. Result is one of 'HH' (a high value with neighbors high on average), 'LL' (opposite of 'HH'), 'HL' (a high value surrounded by lows on average), and 'LH' (opposite of 'HL'). Null values are returned when nulls exist in the original data. | | significance | NUMERIC | The statistical significance (from 0 to 1) of a cluster or outlier classification. Lower numbers are more significant. | | rowid | INT | Row id of the values which correspond to the input rows. | -| vals | NUMERIC | Values from `'column_name'`. | +| vals | NUMERIC | Values from `'column_name'` that are standardized (centered on the mean and normalized by the standard deviation). This is carried out by [`Assuncao Rate`](https://github.com/pysal/pysal/blob/b18652a8e4d51e114de1345d55e754556fc41895/pysal/esda/smoothing.py#L505-L554) in the PySAL library. | #### Example Usage From 10a1d03287a0335b352e6b139bafce6d29c5d13b Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Tue, 5 Sep 2017 08:48:38 -0400 Subject: [PATCH 2/2] updates description --- doc/02_moran.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/02_moran.md b/doc/02_moran.md index a05d79a..f0adacd 100644 --- a/doc/02_moran.md +++ b/doc/02_moran.md @@ -102,7 +102,7 @@ A table with the following columns. | quads | TEXT | Classification of geometry. Result is one of 'HH' (a high value with neighbors high on average), 'LL' (opposite of 'HH'), 'HL' (a high value surrounded by lows on average), and 'LH' (opposite of 'HL'). Null values are returned when nulls exist in the original data. | | significance | NUMERIC | The statistical significance (from 0 to 1) of a cluster or outlier classification. Lower numbers are more significant. | | rowid | INT | Row id of the values which correspond to the input rows. | -| vals | NUMERIC | Values from `'column_name'` that are standardized (centered on the mean and normalized by the standard deviation). This is carried out by [`Assuncao Rate`](https://github.com/pysal/pysal/blob/b18652a8e4d51e114de1345d55e754556fc41895/pysal/esda/smoothing.py#L505-L554) in the PySAL library. | +| vals | NUMERIC | Standardized rate (centered on the mean and normalized by the standard deviation) calculated from `numerator` and `denominator`. This is calculated by [Assuncao Rate](http://pysal.readthedocs.io/en/latest/library/esda/smoothing.html?highlight=assuncao#pysal.esda.smoothing.assuncao_rate) in the PySAL library. | #### Example Usage