Nothing
test_that("test-platt_etr_II generate regression 20240925.csv - linux", {
skip_if_not(is_reference_platform())
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
expect_equal(model_result[["residual_sum_of_squares"]], 12.0348133)
expect_equal(model_result[["alpha"]], 0.178182856)
expect_equal(model_result[["beta"]], 0.035606423)
expect_equal(model_result[["ps"]], 76.532139)
expect_equal(model_result[["pm"]], 44.5824615)
expect_equal(model_result[["ik"]], 250.206234)
expect_equal(model_result[["is"]], 429.51461)
expect_equal(model_result[["ib"]], 2149.3914)
expect_equal(model_result[["im"]], 769.889813)
})
test_that("test-platt_etr_II generate regression 20240925.csv", {
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
expect_no_error(validate_model_result(model_result))
})
test_that("test-platt_etr_II control plot 20240925.csv", {
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
plot <- plot_control(
data,
model_result,
"platt ETR II 20240925.csv",
color_platt
)
expect_s3_class(plot, "ggplot")
expect_gt(length(plot$layers), 0)
out <- file.path("results", "test-platt_etr_II control plot 20240925.jpg")
ggplot2::ggsave(out, create.dir = TRUE, plot = plot, units = "px", width = 1000, height = 1000, dpi = 100, limitsize = FALSE)
expect_true(file.exists(out))
})
test_that("test-platt_etr_II generate regression modified 20240925.csv - linux", {
skip_if_not(is_reference_platform())
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
model_result <- platt_modified(model_result)
expect_equal(model_result[["residual_sum_of_squares"]], 12.0348133)
expect_equal(model_result[["a"]], 76.532139)
expect_equal(model_result[["b"]], 0.178182856)
expect_equal(model_result[["c"]], 0.035606423)
expect_equal(model_result[["d"]], NA_real_)
expect_equal(model_result[["alpha"]], 0.178182856)
expect_equal(model_result[["beta"]], 0.035606423)
expect_equal(model_result[["etrmax_with_photoinhibition"]], 44.5824615)
expect_equal(model_result[["etrmax_without_photoinhibition"]], 76.532139)
expect_equal(model_result[["ik_with_photoinhibition"]], 250.206234)
expect_equal(model_result[["ik_without_photoinhibition"]], 429.51461)
expect_equal(model_result[["im_with_photoinhibition"]], 769.889813)
expect_equal(model_result[["w"]], NA_real_)
expect_equal(model_result[["ib"]], 2149.3914)
expect_equal(model_result[["etrmax_without_with_ratio"]], 1.7166423)
expect_equal(model_result[["saturation"]], TRUE)
})
test_that("test-platt_etr_II generate regression modified 20240925.csv", {
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
expect_no_error(validate_model_result(model_result))
model_result <- platt_modified(model_result)
expect_no_error(validate_modified_model_result(model_result))
})
test_that("test-platt_etr_II modified control plot 20240925.csv", {
test_data_file <- testthat::test_path("data", "dual_pam_data", "20240925.csv")
data <- read_dual_pam_data(test_data_file)
model_result <- platt_generate_regression_ETR_II(data)
model_result <- platt_modified(model_result)
plot <- plot_control(
data,
model_result,
"platt ETR II modified 20240925.csv",
color_platt
)
expect_s3_class(plot, "ggplot")
expect_gt(length(plot$layers), 0)
out <- file.path("results", "test-platt_etr_II modified control plot 20240925.jpg")
ggplot2::ggsave(out, create.dir = TRUE, plot = plot, units = "px", width = 1000, height = 1000, dpi = 100, limitsize = FALSE)
expect_true(file.exists(out))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.