Ludvig
commited on
Commit
·
75d3e9f
1
Parent(s):
af2035f
Suppresses R library attaching warnings
Browse files
plot.R
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
#!/usr/bin/env Rscript
|
| 2 |
library(optparse)
|
| 3 |
-
library(cvms)
|
| 4 |
-
library(dplyr)
|
| 5 |
-
library(ggplot2)
|
| 6 |
-
library(jsonlite)
|
| 7 |
|
| 8 |
dev_mode <- FALSE
|
| 9 |
|
|
|
|
| 1 |
#!/usr/bin/env Rscript
|
| 2 |
library(optparse)
|
| 3 |
+
suppressWarnings(suppressMessages(library(cvms)))
|
| 4 |
+
suppressWarnings(suppressMessages(library(dplyr)))
|
| 5 |
+
suppressWarnings(suppressMessages(library(ggplot2)))
|
| 6 |
+
suppressWarnings(suppressMessages(library(jsonlite)))
|
| 7 |
|
| 8 |
dev_mode <- FALSE
|
| 9 |
|