View source: R/qgis_basicstatisticsforfields.R
qgis_basicstatisticsforfields | R Documentation |
QGIS Algorithm provided by QGIS (native c++) Basic statistics for fields (native:basicstatisticsforfields). Generates basic statistics from the analysis of a values in a field in the attribute table of a vector layer. Numeric, date, time and string fields are supported. The statistics returned will depend on the field type.
qgis_basicstatisticsforfields(
INPUT_LAYER = qgisprocess:::qgis_default_value(),
FIELD_NAME = qgisprocess:::qgis_default_value(),
OUTPUT = qgisprocess:::qgis_default_value(),
OUTPUT_HTML_FILE = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT_LAYER |
|
FIELD_NAME |
|
OUTPUT |
|
OUTPUT_HTML_FILE |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
COUNT - outputNumber - Count
CV - outputNumber - Coefficient of Variation
EMPTY - outputNumber - Number of empty (null) values
FILLED - outputNumber - Number of non-empty values
FIRSTQUARTILE - outputNumber - First quartile
IQR - outputNumber - Interquartile Range (IQR)
MAJORITY - outputNumber - Majority (most frequently occurring value)
MAX - outputNumber - Maximum value
MAX_LENGTH - outputNumber - Maximum length
MEAN - outputNumber - Mean value
MEAN_LENGTH - outputNumber - Mean length
MEDIAN - outputNumber - Median
MIN - outputNumber - Minimum value
MINORITY - outputNumber - Minority (rarest occurring value)
MIN_LENGTH - outputNumber - Minimum length
OUTPUT - outputVector - Statistics
OUTPUT_HTML_FILE - outputHtml - Statistics report
RANGE - outputNumber - Range
STD_DEV - outputNumber - Standard deviation
SUM - outputNumber - Sum
THIRDQUARTILE - outputNumber - Third quartile
UNIQUE - outputNumber - Number of unique values
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.