This website works better with JavaScript.
Home
Explore
Help
Sign In
marcelcosta
/
Nitrogen
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
Browse Source
Aplicación vacía.
main
marcelcosta
1 year ago
parent
b3378b586d
commit
4c81046363
1 changed files
with
28 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+28
-0
Nitrogen/app.R
+ 28
- 0
Nitrogen/app.R
View File
@ -0,0 +1,28 @@
library
(
shiny
)
ui
<-
fluidPage
(
# Application title
titlePanel
(
"
Old Faithful Geyser Data"
)
,
# Sidebar
sidebarLayout
(
sidebarPanel
(
)
,
mainPanel
(
)
)
)
server
<-
function
(
input
,
output
)
{
output
$
distPlot
<-
renderPlot
(
{
}
)
}
# Run the application
shinyApp
(
ui
=
ui
,
server
=
server
)
Write
Preview
Loading…
Cancel
Save