last_t <-25
ex_list <- simulation@exchangeslist[[last_t]]
write.csv(ex_list, file.path(outdir, paste0("exchange_flux_t", last_t, ".csv")), row.names = FALSE)
After completing the simulation in R, I extracted the interaction table for the compounds within a specific time period. I would like to know the units for the compounds in the table, such as mM?

last_t <-25
ex_list <- simulation@exchangeslist[[last_t]]
write.csv(ex_list, file.path(outdir, paste0("exchange_flux_t", last_t, ".csv")), row.names = FALSE)
After completing the simulation in R, I extracted the interaction table for the compounds within a specific time period. I would like to know the units for the compounds in the table, such as mM?