mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
320845f8dd
- Added helper scripts for running the apps. - Added templates to express affinity and anti-affinity. - Updated/Added readme appropriately. - Added asciicast where appropriate.
10 lines
472 B
R
Executable file
10 lines
472 B
R
Executable file
#!/usr/bin/env Rscript
|
|
library(ggplot2)
|
|
|
|
argv <- commandArgs(T)
|
|
inFile <- argv[1]
|
|
outFile <- argv[2]
|
|
tab = read.table(inFile)
|
|
dat <- data.frame(Discovery = tab[,1], Time = tab[,2])
|
|
bplot <- ggplot(dat, aes(x=Discovery, y=Time, fill=Discovery)) + geom_boxplot() + guides(fill=FALSE) + ggtitle("Performance Comparison With and Without Discovery Enabled") + xlab("") + ylab("% Variation in Normalized Execution Time") + expand_limits(y=c(0,50))
|
|
ggsave(outFile, device="pdf")
|