Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Wikki13
/
BioAge-Tool
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e623b6a
BioAge-Tool
/
app.R
Wikki13
Update app.R
f6b8569
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
147 Bytes
# app.R
library
(
shiny
)
# Source the UI and Server files
source
(
"ui.R"
)
source
(
"server.R"
)
# Run the Shiny app
shinyApp
(
ui
=
ui
,
server
=
server
)