Sha256: 022ea1bfcc009a75ab9ea678efac814ea19884750745b671eb388187ed5ff1f1

Contents?: true

Size: 523 Bytes

Versions: 3

Compression:

Stored size: 523 Bytes

Contents

#! /usr/bin/env Rscript

library(ggplot2)
args <- commandArgs(trailingOnly = TRUE)

data <- read.table(args[1], header=TRUE)
output <- args[2]
x_axis <- args[3]
y_axis <- args[4]
x_tag <- args[5]
y_tag <- args[6]
x_order <- unique(data[[x_axis]])
data[[x_axis]] <- factor(data[[x_axis]], levels = x_order)

pdf(file.path(output, 'boxplot.pdf'))
	ggplot(data, aes(x=data[[x_axis]], y=data[[y_axis]])) + 
		geom_boxplot() +
		xlab(x_tag) +
		ylab(y_tag) +
		theme(axis.text.x = element_text(angle = 45, hjust = 1))
dev.off()

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pets-0.1.4 bin/plot_boxplot.R
pets-0.1.3 bin/plot_boxplot.R
pets-0.1.2 bin/plot_boxplot.R