deprecated | R Documentation |
Deprecated functions that will be fully removed in future releases. Each of these functions will produce an error when called that will redirect the user to a suitable replacement.
read_tdl_file(...)
read_licor_file(...)
check_licor_data(...)
calculate_arrhenius(...)
calculate_peaked_gaussian(...)
... |
Additional arguments; currently unused. |
None of the deprecated functions return anything.
# These functions all throw errors, so we will wrap them in `tryCatch` here
tryCatch(
read_tdl_file(),
error = function(e) {print(e)}
)
tryCatch(
read_licor_file(),
error = function(e) {print(e)}
)
tryCatch(
check_licor_data(),
error = function(e) {print(e)}
)
tryCatch(
calculate_arrhenius(),
error = function(e) {print(e)}
)
tryCatch(
calculate_peaked_gaussian(),
error = function(e) {print(e)}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.