qat (version 0.74)

qat_plot_trimmed_distribution_2d: Plot a trimmed distribution check result

Description

A plot of the result of a trimmed distribution check will be produced.

Usage

qat_plot_trimmed_distribution_2d(resultlist, filename, measurement_name = "", directoryname = "", plotstyle = NULL)

Arguments

resultlist
List of results from qat\_analyse\_trimmed\_distribution\_2d
filename
Name of the file without extension.
measurement_name
Name of the measurement.
directoryname
Directory, where the resulted file should be stored.
plotstyle
A list with a qat color scheme.

Value

No return value.

Details

A plot will be produced, which base on the resulting flagvector of qat\_analyse\_trimmed\_distribution\_2d. 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.

See Also

qat_analyse_trimmed_distribution_2d

Examples

Run this code
vec <- array(rnorm(100),c(25,20))
result <- qat_analyse_trimmed_distribution_2d(vec)
# this example produce a file exampleplot_trimmeddist.png in the current directory
qat_plot_trimmed_distribution_2d(result$stat, "exampleplot_trimmeddist", 
measurement_name="Result of Check")	

Run the code above in your browser using DataCamp Workspace