1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
GEOGRAPHICALLY WEIGHTED MULTIPLE REGRESSION (POINTS)
====================================================
Description
-----------
Parameters
----------
- ``Points[Vector]``:
- ``Dependent Variable[TableField]``:
- ``Distance Weighting[Selection]``:
- ``Inverse Distance Weighting Power[Number]``:
- ``Inverse Distance Offset[Boolean]``:
- ``Gaussian and Exponential Weighting Bandwidth[Number]``:
- ``Search Range[Selection]``:
- ``Search Radius[Number]``:
- ``Search Mode[Selection]``:
- ``Number of Points[Selection]``:
- ``Maximum Number of Observations[Number]``:
- ``Minimum Number of Observations[Number]``:
Outputs
-------
- ``Regression[Vector]``:
See also
---------
Console usage
-------------
::
processing.runalg('saga:geographicallyweightedmultipleregressionpoints',
points, dependent, distance_weighting_weighting,
distance_weighting_idw_power, distance_weighting_idw_offset,
distance_weighting_bandwidth, range, radius, mode, npoints,
maxpoints, minpoints, regression)
Available options for selection parameters:
distance_weighting_weighting(Distance Weighting)
0 - [0] no distance weighting
1 - [1] inverse distance to a power
2 - [2] exponential
3 - [3] gaussian weighting
range(Search Range)
0 - [0] search radius (local)
1 - [1] no search radius (global)
mode(Search Mode)
0 - [0] all directions
1 - [1] quadrants
npoints(Number of Points)
0 - [0] maximum number of observations
|