Remove "Time" from the updated design summary#622
Remove "Time" from the updated design summary#622LittleBeannie wants to merge 3 commits intomainfrom
Conversation
|
Hi @jdblischak, we encountered an error in |
jdblischak
left a comment
There was a problem hiding this comment.
The error non-numeric argument to mathematical function occurs for the line time_value <- round(analysis$time[i], tdigits) in gs_bound_summary_single() after running gs_update_ahr() with a new alpha value:
gsDesign2/R/gs_bound_summary.R
Line 85 in 24492c6
This is because time was removed the data frame analysis returned by gs_update_ahr().
Do you also want to remove the Time from the table produced by gs_bound_summary()? If not, the tests can be fixed by adding back time to the output from gs_update_ahr().
"Time" is not reported for returns from |
Time is no longer returned by gs_update_ahr(). This is relevant when a user runs gs_bound_summary() directly on the output of gs_update_ahr(), or if they provide multiple alphas to gs_bound_summary() (since that requires running gs_update_ahr() on the new alphas).
jdblischak
left a comment
There was a problem hiding this comment.
I updated gs_bound_summary() in 1ff3537
To solve issue #616