Skip to content

Commit efd45df

Browse files
committed
add documentation for functions to make outputs into an easy txt table #54 #57
1 parent 9f00cce commit efd45df

File tree

4 files changed

+107
-1
lines changed

4 files changed

+107
-1
lines changed

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export(add_trans)
66
export(calc_z)
77
export(ce)
88
export(dynamics)
9+
export(extract_df)
910
export(find_msyr)
1011
export(get_diff)
1112
export(get_dz)
@@ -28,6 +29,7 @@ export(prob_rebuilt_goal)
2829
export(projections)
2930
export(rebuild_by_x)
3031
export(run_app)
32+
export(traj_list_to_df)
3133
import(shiny)
3234
importFrom(config,get)
3335
importFrom(dplyr,bind_rows)

R/28_traj_list_to_df.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
#' low.list.const,
7070
#' zero.list.const
7171
#' )
72+
#'
7273
traj_list_to_df <- function(x){
73-
# x is a full list of trajectories, a nested list with depletion level nested in bycatch
7474
z <- list()
7575
for(i in 1:length(x)){
7676
y <- lapply(x[[i]], FUN = extract_df)

man/extract_df.Rd

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/traj_list_to_df.Rd

+82
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)