knitr::opts_chunk$set(echo = TRUE)
library(tidyverse) library(here) library(amstools) library(HybridGIS) options(digits = 3) options(scipen = 4) df <- read_csv(here("data_analysed/carb_all_results.csv")) %>% compare_consensus() %>% mutate(c12ua = he12C * 1E6) samples <- read_csv(here("data/carb_data.csv")) %>% select(wheel, pos, mass, he_added) df <- left_join(df, samples, by = c("wheel", "pos")) %>% filter(wheel != "USAMS020521")
df %>% ggplot(aes(mass, c12ua, color = as.factor(rec_num))) + geom_point()
df %>% ggplot(aes(mass, fm_diff, color = wheel)) + geom_point()
df %>% ggplot(aes(mass, fm_diff, color = as.factor(rec_num))) + geom_point()
df %>% ggplot(aes(c12ua, abs(fm_diff))) + geom_smooth() + geom_point(aes(color = wheel))
df %>% filter(sample_type == "S") %>% ggplot(aes(c12ua, abs(fm_diff))) + geom_point(aes(color = wheel))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.