qat-package: Quality Assurance Toolkit

Description Details Author(s) Examples

Description

This package helps to provide a quality assurance on data.

Details

Package: qat
Type: Package
Version: 0.72
Date: 2013-06-13
License: GPL-2

Author(s)

Andre Duesterhus
Maintainer: Andre Duesterhus <andue@uni-bonn.de>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
library("qat")
# define testvector
testvector<-rnorm(200)
# read in workflow from systemfiles
filename_in <- system.file("extdata/workflowexample.xml", package="qat")
workflowlist <- qat_config_read_workflow(filename_in)
# define some additional vectors
maxlim <- seq(3,1,length.out=200)
minlim <- seq(-1,-3,length.out=200)
uproc <- seq(1,3,length.out=200)
downroc <- seq(3,1,length.out=200)
# run the workflow on the testvector
rlist <- qat_run_workflow_check(testvector,workflowlist,vec1=maxlim, vec2=minlim, 
vec3=uproc, vec4=downroc)
# produce some plots of the result in teh current directory
qat_run_workflow_plot(rlist, measurement_name="Test", basename="test")
# add some more informations for the workflow
workflowlist <- qat_add_all_descriptions(workflowlist) 
workflowlist <- qat_add_all_algorithms(workflowlist)
workflowlist <- qat_add_comment(workflowlist, 1, "No problems")

filename_out <- "myworkflow_result.xml" 
# write edited workflow in current directory
qat_config_write_workflow(workflowlist, output_filename=filename_out) 

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