diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2016-08-24 14:45:28 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2016-08-24 14:45:28 -0300 |
commit | c05d92323d922391b51d6aae9dba8e3e8623c8be (patch) | |
tree | 302c6e581501497596e05152f71f4509c8bbd98a | |
parent | 65edd97c84680231ba2b2c4b88403f77109d8ad2 (diff) |
Changed require() to library().
-rw-r--r-- | plot.R | 10 | ||||
-rw-r--r-- | run.R | 8 |
2 files changed, 9 insertions, 9 deletions
@@ -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") @@ -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") |