Nothing
The dryingkineticmodels package fits 20 thin-layer drying kinetic models
to experimental moisture ratio (MR) data, ranks them by statistical criteria,
identifies the best model, performs residual diagnostics, and exports a
formatted report to a Word document.
# Install from CRAN
install.packages("dryingkineticmodels")
library(dryingkineticmodels)
# From an Excel file
result <- dryingkineticmodels("drying_data.xlsx")
# From a data frame
df <- data.frame(
time = c(0, 30, 60, 90, 120),
MR = c(1.00, 0.74, 0.51, 0.32, 0.18)
)
result <- dryingkineticmodels(df)
20 thin-layer drying models are fitted, including Lewis, Page, Modified Page, Henderson
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.