aephidayatuloh commited on
Commit
0109b6d
·
1 Parent(s): ced4569

update model

Browse files
Files changed (2) hide show
  1. MoE-model.rds +0 -0
  2. app.R +5 -2
MoE-model.rds CHANGED
Binary files a/MoE-model.rds and b/MoE-model.rds differ
 
app.R CHANGED
@@ -110,8 +110,11 @@ server <- function(input, output, session) {
110
  e_charts(univ_major) |>
111
  e_bar(predict_GPA, label = list(show = TRUE)) |>
112
  e_flip_coords() |>
113
- e_y_axis(inverse = TRUE) |>
114
- e_grid(left = "20%", right = "5%")
 
 
 
115
  }
116
  )
117
  }
 
110
  e_charts(univ_major) |>
111
  e_bar(predict_GPA, label = list(show = TRUE)) |>
112
  e_flip_coords() |>
113
+ e_x_axis(name = "Predicted GPA Final", nameLocation = "center",
114
+ nameGap = 30, min = 0, max = 4, interval = 0.5) |>
115
+ e_y_axis(name = "Univ. Major Schema", nameLocation = "start", inverse = TRUE) |>
116
+ e_grid(left = "20%", right = "5%") |>
117
+ e_legend(show = FALSE)
118
  }
119
  )
120
  }