Skip to content

Commit 0c6460c

Browse files
committed
Shiny applications B04... -> B05...
1 parent d5f8413 commit 0c6460c

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
- Learnr **B02La_reg_multi** completely rewritten
66

7+
- Shiny application B04... renamed B05...
8+
79
# BioDataScience2 2022.1.1
810

911
- Learnrs B00 and B01 revised

inst/shiny/B04Sa_micmen/app.R renamed to inst/shiny/B05Sa_micmen/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ server <- function(input, output, session) {
7878
data <- model_predict()
7979
p <- graph
8080

81-
if(!any(is.nan(data$y_predit))) {
81+
if (!any(is.nan(data$y_predit))) {
8282
p <- p +
8383
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
8484
}

inst/shiny/B04Sb_exponent/app.R renamed to inst/shiny/B05Sb_exponent/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ server <- function(input, output, session) {
8080
data <- model_predict()
8181
p <- graph
8282

83-
if(!any(is.nan(data$y_predit))) {
83+
if (!any(is.nan(data$y_predit))) {
8484
p <- p +
8585
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
8686
}

inst/shiny/B04Sc_logis/app.R renamed to inst/shiny/B05Sc_logis/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ server <- function(input, output, session) {
8686
data <- model_predict()
8787
p <- graph
8888

89-
if(!any(is.nan(data$y_predit))) {
89+
if (!any(is.nan(data$y_predit))) {
9090
p <- p +
9191
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
9292
}

inst/shiny/B04Sd_gen_logis/app.R renamed to inst/shiny/B05Sd_gen_logis/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ server <- function(input, output, session) {
8989
data <- model_predict()
9090
p <- graph
9191

92-
if(!any(is.nan(data$y_predit))) {
92+
if (!any(is.nan(data$y_predit))) {
9393
p <- p +
9494
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
9595
}

inst/shiny/B04Se_gompertz/app.R renamed to inst/shiny/B05Se_gompertz/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ server <- function(input, output, session) {
8585
data <- model_predict()
8686
p <- graph
8787

88-
if(!any(is.nan(data$y_predit))) {
88+
if (!any(is.nan(data$y_predit))) {
8989
p <- p +
9090
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
9191
}

inst/shiny/B04Sf_richards/app.R renamed to inst/shiny/B05Sf_richards/app.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ server <- function(input, output, session) {
9090
data <- model_predict()
9191
p <- graph
9292

93-
if(!any(is.nan(data$y_predit))) {
93+
if (!any(is.nan(data$y_predit))) {
9494
p <- p +
9595
ggplot2::geom_line(chart::f_aes(y_predit ~ x), color = "red", data = data)
9696
}

0 commit comments

Comments
 (0)