-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path31-github-report.rmd
56 lines (46 loc) · 1.85 KB
/
31-github-report.rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: "Test Summary"
output: github_document
params:
input_dir: './build'
output_name: ''
---
```{r setup, echo=FALSE, include=FALSE, results='hide'}
# Config knitr
knitr::opts_chunk$set(echo = TRUE, comment = NA, prompt = FALSE)
# Load all build artifacts
data_files <- list.files(params$input_dir, pattern = "\\.dat$", full.names = TRUE)
lapply(data_files, load, .GlobalEnv)
```
```{r report_name, echo=FALSE}
paste("Report Name:",params$output_name)
```
## Summary Statistics from Raw Data
* List of expected columns in the jmeter output
* List of labels selected for analysis (The kind of events to be analyzed)
* Summary statistics of elapsed time (ms) for each label.
```{r raw_data_stats, echo=FALSE}
cat("Input column names:\n", paste(expected_fields, sep=","))
cat("Value of 'label' used for analysis:\n", paste(target_labels, sep=","))
summaries
```
## Results of Correlation and Linear Modeling
How strong is the linear correlation between time elapsed and the number of succesful events? This correlation is performed assuming the elapsed time for each event should be increasing as the cumulative number of events increases.
A correlation coefficient near zero (< 0.25) indicates no or very weak correlation.
```{r correlations}
cor_results
```
Answering the question, "Is the time elapsed significantly dependent on the number of successful events of the type being analyzed?" For example, is the time elapsed dependent on the number of successful "PUT Perf Container" events?
```{r linear_mods}
lmodels
```
## Plots
Plotting the time elapsed (ms) for each event by the cumulative number of events.
```{r bin_plots, echo=FALSE}
for(i in 1:length(bin_plots)){print(bin_plots[[i]])}
```
```{r dot_plots, echo=FALSE}
for(i in 1:length(dot_plots)){print(dot_plots[[i]])}
```
###### Template
_This report was generated from the template, 31-github-report.rmd_