qat_plot_roc_rule_static_2d: Plot a static ROC rule result

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

View source: R/qat_plot_roc_rule_static_2d.R

Description

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

Usage

1
2
3
qat_plot_roc_rule_static_2d(flagvector, filename, measurement_vector = NULL, 
max_upward_value = 0, max_downward_value = 0, measurement_name = "", 
directoryname = "", plotstyle = NULL)

Arguments

flagvector

The resulting flagvector of qat\_analyse\_roc\_rule\_static\_2d

filename

Name of the file without extension.

measurement_vector

The measurement vector, which should be plotted

max_upward_value

The used maximum upward value.

max_downward_value

The used maximum downward value.

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\_roc\_rule\_static\_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_roc_rule_static_1d, qat_analyse_roc_rule_static_2d, qat_plot_roc_rule_dynamic_2d

Examples

1
2
3
4
5
6
vec <- array(rnorm(500), c(25,20))
result <- qat_analyse_roc_rule_static_2d(vec, 2,2)
# this example produce a file exampleplot_roc_sta.png in the current directory
qat_plot_roc_rule_static_2d(result$flagvector, "exampleplot_roc_sta", 
measurement_vector=vec, max_upward_value=result$max_upward_value, 
max_downward_value=result$max_downward_value, measurement_name="Result of Check") 

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