Learn R Programming

PhotoGEA (version 1.4.0)

deprecated: Deprecated functions

Description

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.

Usage

read_tdl_file(...)

read_licor_file(...)

check_licor_data(...)

calculate_arrhenius(...)

calculate_peaked_gaussian(...)

Value

None of the deprecated functions return anything.

Arguments

...

Additional arguments; currently unused.

Examples

Run this code
# 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)}
)

Run the code above in your browser using DataLab