#' Plot Cc, ppm CO2 concentration at the site of carboxylation, generally meaning inside the chloroplast and ignoring PEPC in cytosol
#'
#' Plots the input variables.
#'
#' @param chamber_TotalCc xxxPARAMxxx
#' @param chamber_12Cc xxxPARAMxxx
#' @param chamber_13Cc xxxPARAMxxx
#' @param x_time xxxPARAMxxx
#' @param plot_format_list xxxPARAMxxx
#' @param output_fn_prefix xxxPARAMxxx
#'
#' @return NULL xxxRETURNxxx
#' @importFrom graphics par
#'
plot_Cc_total <-
function# Plot Cc, ppm CO2 concentration at the site of carboxylation, generally meaning inside the chloroplast and ignoring PEPC in cytosol
###
(chamber_TotalCc
###
, chamber_12Cc
###
, chamber_13Cc
###
, x_time
###
, plot_format_list
###
, output_fn_prefix
###
)
{
##details<<
## Plots the input variables.
for (i_plot in plot_format_list)
{
plot_filename <- "plot_Cc_ppm_CO2_concentration";
s_plot_settings_begin_end(output_fn_prefix, plot_filename, plot_mode = "begin", plot_format = i_plot);
graphics::par(mfrow=c(3,1), mar=c(4,4,2,2), oma=c(1,1,1,1)); # mar allows the histograms to touch top-bottom c(bot,lef,top,rig)
plot_not_na(x_time, chamber_TotalCc, pch=20, type="l", ylab="", main="Total Cc, ppm CO2 concentration at the site of carboxylation");
plot_not_na(x_time, chamber_12Cc , pch=20, type="l", ylab="", main="12 Cc, ppm CO2 concentration at the site of carboxylation");
plot_not_na(x_time, chamber_13Cc , pch=20, type="l", ylab="", main="13 Cc, ppm CO2 concentration at the site of carboxylation");
#axis(3); axis(4); # add axis labels to top and right sides
s_plot_settings_begin_end(output_fn_prefix, plot_filename, plot_mode = "end", i_plot);
} # plotting loop
invisible(NULL);
### NULL
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.