aboutsummaryrefslogtreecommitdiff
path: root/plot.R
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-08-24 14:45:28 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2016-08-24 14:45:28 -0300
commitc05d92323d922391b51d6aae9dba8e3e8623c8be (patch)
tree302c6e581501497596e05152f71f4509c8bbd98a /plot.R
parent65edd97c84680231ba2b2c4b88403f77109d8ad2 (diff)
Changed require() to library().
Diffstat (limited to 'plot.R')
-rw-r--r--plot.R10
1 files changed, 5 insertions, 5 deletions
diff --git a/plot.R b/plot.R
index 3004a27..d30cb6b 100644
--- a/plot.R
+++ b/plot.R
@@ -1,11 +1,11 @@
# Functions for plotting results from manipulation experiments.
# NOTE: This script should only be used after results are generated with run.R
-require(cowplot)
-require(gridExtra)
-require(logging)
-require(reshape2)
-require(scales)
+library(cowplot)
+library(gridExtra)
+library(logging)
+library(reshape2)
+library(scales)
source("util.R")