qat_plot_noc_rule_2d: Plot a NOC rule result

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/qat_plot_noc_rule_2d.R

Description

A plot of the result of a NOC rule check will be produced.

Usage

1
2
3
qat_plot_noc_rule_2d(flagvector, filename, measurement_vector = NULL, 
max_return_elements = 0, measurement_name = "", directoryname = "", 
plotstyle = NULL)

Arguments

flagvector

The resulting flagvector of qat\_analyse\_noc\_rule\_2d

filename

Name of the file without extension.

measurement_vector

The measurement vector, which should be plotted

max_return_elements

The number of maximum reruning elements, which was used in the test.

measurement_name

Name of the measurement.

directoryname

Directory, where the resulted file should be stored.

plotstyle

A list with a qat color scheme.

Details

A plot will be produced, which base on the resulting flagvector of qat\_analyse\_noc\_rule\_2d. Additional information on the parameters, which were used while performing the test, will be added to the plot. When no plotstyle is defined the standard-colorscheme will be used. The resulting plot will be stored in the folder, which is defined by directory under the given filename, with the extension png.

Value

No return value.

Author(s)

Andre Duesterhus

See Also

qat_plot_noc_rule_1d, qat_analyse_noc_rule_2d

Examples

1
2
3
4
5
vec <- array(c(1,1,1,2,2), c(25,20))
result <- qat_analyse_noc_rule_2d(vec, 1)
# this example produce a file exampleplot_noc.png in the current directory
qat_plot_noc_rule_2d(result$flagvector, "exampleplot_noc", measurement_vector=vec, 
max_return_elements=result$max_return_elements, measurement_name="Result of Check")

qat documentation built on May 2, 2019, 4:06 p.m.