We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wl_convert_units.hyperSpec()
switch
wl_create_label_from_units(to, on_failure = "pass as-is")
Basing on the lines from R/wl_convert_units.R (see this comment ), this switch sentence:
R/wl_convert_units.R
x@label$.wavelength <- switch(.wl_fix_unit_name(to), nm = expression("Wavelength, nm"), invcm = expression(tilde(nu) / cm^-1), ev = expression("Energy / eV"), freq = expression(nu / THz), raman = expression(Raman ~ shift / cm^-1), to )
Could be replaced with:
x@label$.wavelength <- wl_create_label_from_units(to, on_failure = "pass as-is")
The issue is that the default labels would change too.
Related: #69
The text was updated successfully, but these errors were encountered:
Spam
Sorry, something went wrong.
No branches or pull requests
switch
sentence in thewl_convert_units.hyperSpec()
may be replaced with withwl_create_label_from_units(to, on_failure = "pass as-is")
Basing on the lines from
R/wl_convert_units.R
(see this comment ), thisswitch
sentence:Could be replaced with:
The issue is that the default labels would change too.
Related: #69
The text was updated successfully, but these errors were encountered: