-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.R
71 lines (60 loc) · 2.18 KB
/
app.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
library(shiny)
# Define UI for application
ui <- fluidPage(
# Application title
titlePanel("Funksjonell respons"),
# Sidebar with a slider input
sidebarLayout(
sidebarPanel(
h2("Simuler forskjellige parameterverdier for funksjonell respons type II"),
p("Pannelene under endrer paramtrene a, T og h i funksjonell respons type II likninga."),
p(""),
p("E = (a*Ttot*N) / (1 + (a*Th*N))"),
p("E er energi inn (en eller annen enhet for næringsinntak), a er angrepsraten, Ttot er total tid brukt i søk etter bytte, Th er behandlingstid på hvert bytter og N er totalt antall bytte tilgjengelig (byttetetthet)"),
sliderInput("a",
"Angrepsrate (a):",
min = 1,
max = 50,
value = 30),
sliderInput("Ttot",
"Total tid brukt på byttesøk (T):",
min = 1,
max = 50,
value = 30),
sliderInput("h",
"Håndteringstid for hvert bytte (Th):",
min = 0.00000000001,
max = 0.1,
value = 0.05),
p(""),
p("Endre parametre i pannelet over og se resultatene på grafen til høyre (eller under i tilfelle mobilversjon)"),
p("")
tags$a(href="https://github.com/andersfi/functional_response_temp", "Source code")
),
# Show a plot
mainPanel(
plotOutput("funcresp_plot")
)
)
)
# Define server logic
server <- function(input, output) {
output$funcresp_plot <- renderPlot({
# generate values to plot based on input from ui.R
N <- seq(from=0.01,to=100,by=1)
an <- (input$a*input$Ttot*N) / (1 + (input$a*input$h*N))
# draw the plot
plot(N,an,type="l",xlab="(N) Mengde bytte",ylab="(E) næringsinntak",
ylim=c(0,1000))
})
}
# Run the application
shinyApp(ui = ui, server = server)