27.1.10. Plots

27.1.10.1. Bar plot

Creates a bar plot from a category and a layer field.

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

Category field name

NAME_FIELD

[tablefield: any]

Categorical field to use for grouping the bars (X axis)

Value field

VALUE_FIELD

[tablefield: any]

Value to use for the plot (Y axis).

Bar plot

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Bar plot

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:barplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.2. Box plot

Creates a box plot from a category field and a numerical layer field.

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

Category name field

NAME_FIELD

[tablefield: any]

Categorical field to use for grouping the boxes (X axis)

Value field

VALUE_FIELD

[tablefield: any]

Value to use for the plot (Y axis).

Additional statistic lines

MSD

[enumeration]

Default: 0

Additional statistics information to add to the plot. One of:

  • 0 --- Show Mean

  • 1 --- Show Standard Deviation

  • 2 --- Don't show mean and standard deviation

Box plot

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Box plot

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:boxplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.3. Mean and standard deviation plot

Creates a box plot with mean and standard deviation values.

参数

标注

名称

类型

描述

Input table

INPUT

[vector: any]

Input vector layer

Category name field

NAME_FIELD

[tablefield: any]

Categorical field to use for grouping the boxes (X axis)

Value field

VALUE_FIELD

[tablefield: any]

Value to use for the plot (Y axis).

Plot

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Plot

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:meanandstandarddeviationplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.4. Polar plot

Generates a polar plot based on the value of an input vector layer.

Two fields must be entered as parameters: one that defines the category each feature (to group features) and another one with the variable to plot (this has to be a numeric one).

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

Category name field

NAME_FIELD

[tablefield: any]

Categorical field to use for grouping the features (X axis)

Value field

VALUE_FIELD

[tablefield: any]

Value to use for the plot (Y axis).

Polar plot

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Polar plot

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:polarplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.5. Raster layer histogram

Generates a histogram with the values of a raster layer.

参数

标注

名称

类型

描述

输入图层

INPUT

[栅格]

Input raster layer

Band number

BAND

[raster band]

Raster band to use for the histogram

number of bins

BINS

[数字]

Default: 10

The number of bins to use in the histogram (X axis). Minimum 2.

Histogram

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Histogram

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:rasterlayerhistogram

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.6. Vector layer histogram

Generates a histogram with the values of the attribute of a vector layer.

The attribute to use for computing the histogram must be numeric.

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

Attribute

FIELD

[tablefield: any]

Value to use for the plot (Y axis).

number of bins

BINS

[数字]

Default: 10

The number of bins to use in the histogram (X axis). Minimum 2.

Histogram

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Histogram

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:vectorlayerhistogram

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.7. Vector layer scatterplot

Creates a simple X - Y scatter plot for a vector layer.

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

X attribute

XFIELD

[tablefield: any]

Field to use for the X axis

Y attribute

YFIELD

[tablefield: any]

Field to use for the Y axis

Scatterplot

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Scatterplot

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:vectorlayerscatterplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。

27.1.10.8. Vector layer scatterplot 3D

Creates a 3D scatter plot for a vector layer.

参数

标注

名称

类型

描述

输入图层

INPUT

[vector: any]

Input vector layer

X attribute

XFIELD

[tablefield: any]

Field to use for the X axis

Y attribute

YFIELD

[tablefield: any]

Field to use for the Y axis

Z attribute

ZFIELD

[tablefield: any]

Field to use for the Z axis

Histogram

OUTPUT

[html]

默认: [保存到临时文件]

Specify the HTML file for the plot. One of:

  • 保存到临时文件

  • 保存到文件…

输出

标注

名称

类型

描述

Histogram

OUTPUT

[html]

HTML file with the plot. Available in the Processing ► Result Viewer.

Python代码

Algorithm ID: qgis:scatter3dplot

import processing
processing.run("algorithm_id", {parameter_dictionary})

当你在数据处理工具箱某个算法前悬停时,算法 id 将会展现。*参数字*将会提供参数的名称与数值。参考详见`数据处理_控制台`以获取如何从Python控制台中运行数据处理算法。