qat (version 0.74)

qat_plot_distribution_1d: Plot a distribution check result

Description

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

Usage

qat_plot_distribution_1d(resultlist_hist, filename, resultlist_stat, numofbars = -1, measurement_name = "", directoryname = "", plotstyle = NULL)

Arguments

resultlist_hist
Result of a hist function.
filename
Name of the file without extension.
resultlist_stat
List of statistical parameters.
numofbars
Numbers of bars of the histogram plot.
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\_distribution\_1d. Additional information on the parameters, which were used while performing the test, will be included into 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.

See Also

qat_analyse_distribution_1d

Examples

Run this code
vec <- rnorm(1000)
result <- qat_analyse_distribution_1d(vec, 15)
# this example produce a file exampleplot_dist.png in the current directory
qat_plot_distribution_1d(result$hist, "exampleplot_dist", result$stat, 
numofbars=result$numofbars, measurement_name="Result of Check")	

Run the code above in your browser using DataLab