Spaces:
Sleeping
Sleeping
add gridExtra package
Browse files- Dockerfile +1 -1
- app.R +1 -0
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ RUN install2.r --error \
|
|
9 |
caret \
|
10 |
fastshap \
|
11 |
ggplot2 \
|
12 |
-
|
13 |
doMC \
|
14 |
forcats \
|
15 |
shiny
|
|
|
9 |
caret \
|
10 |
fastshap \
|
11 |
ggplot2 \
|
12 |
+
gridExtra \
|
13 |
doMC \
|
14 |
forcats \
|
15 |
shiny
|
app.R
CHANGED
@@ -4,6 +4,7 @@ library(caret)
|
|
4 |
library(readr)
|
5 |
library(catboost)
|
6 |
library(ggplot2)
|
|
|
7 |
|
8 |
source("calculate_shap.R")
|
9 |
source("plot_shap.R")
|
|
|
4 |
library(readr)
|
5 |
library(catboost)
|
6 |
library(ggplot2)
|
7 |
+
library(gridExtra)
|
8 |
|
9 |
source("calculate_shap.R")
|
10 |
source("plot_shap.R")
|