dfalbel commited on
Commit
ca30460
1 Parent(s): 42d15d2

try loading a model

Browse files
Files changed (1) hide show
  1. app.R +3 -1
app.R CHANGED
@@ -2,8 +2,10 @@ library(shiny)
2
  library(bslib)
3
  library(dplyr)
4
  library(ggplot2)
 
 
 
5
 
6
- df <- readr::read_csv("penguins.csv")
7
  # Find subset of columns that are suitable for scatter plot
8
  df_num <- df |> select(where(is.numeric), -Year)
9
 
 
2
  library(bslib)
3
  library(dplyr)
4
  library(ggplot2)
5
+ library(minhub)
6
+
7
+ model <- gptneox()
8
 
 
9
  # Find subset of columns that are suitable for scatter plot
10
  df_num <- df |> select(where(is.numeric), -Year)
11