The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
# load libraries
library(isoorbi) # for Orbitrap functions
library(dplyr) # for data wrangling
library(ggplot2) # for data visualization
# load and process data
data <-
# load file included in isoorbi package
system.file(package = "isoorbi", "extdata", "testfile_flow.isox") |>
orbi_read_isox() |>
orbi_simplify_isox() |>
# define data block where signal is stable (plateau)
orbi_define_block_for_flow_injection(start_time.min = 0.1, end_time.min = 0.9) |>
# flag extreme TICxIT values
orbi_flag_outliers(agc_fold_cutoff = 2)
fig <-
data_summary |>
filter(isotopocule == "18O") |>
# plot
ggplot() +
aes(
x = filename,
y = ratio, ymin = ratio - ratio_sem, ymax = ratio + ratio_sem,
color = filename, shape = filename
) +
geom_pointrange() +
scale_color_brewer(palette = "Dark2") +
# theme definitions
theme_bw() +
theme(
text = element_text(size = 16),
panel.grid = element_blank()
) +
# labels
labs(
y = expression("ratio ("^18*O/M0*")")
)
fig
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.