From c05d92323d922391b51d6aae9dba8e3e8623c8be Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 24 Aug 2016 14:45:28 -0300 Subject: Changed require() to library(). --- plot.R | 10 +++++----- run.R | 8 ++++---- 2 files changed, 9 insertions(+), 9 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") diff --git a/run.R b/run.R index b48d4a9..bc44d63 100644 --- a/run.R +++ b/run.R @@ -2,10 +2,10 @@ # # Main experiments script. -require(logging) -require(MASS) -require(mp) -require(Rtsne) +library(logging) +library(MASS) +library(mp) +library(Rtsne) source("measures.R") source("util.R") -- cgit v1.2.3