Hello, I want to load data to the shiny app I'm building
I am trying to do it this way in the server:
library(readxl)
DONNEE <- read_excel("path/file.xlsx",sheet = "Database")
but i guess that the path is wrong since the app might be running elsewhere. (I'm not sure what 's going on when running those)
How should I procede ?