@@ -132,7 +132,7 @@ filter_data <- function(dataset, arm_var, sel_arm, lb_test_var, sel_lb_test) {
132132# '
133133# ' @param dataset `[data.frame]`
134134# '
135- # ' A dataframe containing the variables listed below as columns.
135+ # ' A data frame containing the variables listed below as columns.
136136# ' @param subjectid_var `[character(1)]`
137137# '
138138# ' Name of the variable containing the unique subject IDs.
@@ -175,7 +175,7 @@ derive_req_vars <- function(
175175 return (NULL )
176176 }
177177
178- # Get the data- frame in required structure (Pivot wider grouped by certain variables)
178+ # Get the data frame in required structure (Pivot wider grouped by certain variables)
179179 dataset <- dataset %> %
180180 dplyr :: filter(.data [[lb_test_var ]] %in% c(sel_x , sel_y )) %> %
181181 dplyr :: mutate(
@@ -205,7 +205,7 @@ derive_req_vars <- function(
205205# '
206206# ' @param dataset `[data.frame]`
207207# '
208- # ' A dataframe containing the variables listed below as columns.
208+ # ' A data frame containing the variables listed below as columns.
209209# ' @param subjectid_var `[character(1)]`
210210# '
211211# ' Name of the variable containing the unique subject IDs.
@@ -229,6 +229,24 @@ derive_req_vars <- function(
229229# '
230230# ' Character specifying the plot type for the y-axis. This leads to
231231# ' using the `dataset`'s column "r_<y_plot_type>_<y_sel>" for the y-values.
232+ # ' @param x_ref_line_num `[numeric(1)]`
233+ # '
234+ # ' Numeric specifying the reference line for the x-axis.
235+ # ' @param y_ref_line_num `[numeric(1)]`
236+ # '
237+ # ' Numeric specifying the reference line for the y-axis.
238+ # ' @param x_rng_lower `[numeric(1)]`
239+ # '
240+ # ' Numeric specifying the lower point in the x-axis range.
241+ # ' @param x_rng_upper `[numeric(1)]`
242+ # '
243+ # ' Numeric specifying the upper point in the x-axis range.
244+ # ' @param y_rng_lower `[numeric(1)]`
245+ # '
246+ # ' Numeric specifying the lower point in the y-axis range.
247+ # ' @param y_rng_upper `[numeric(1)]`
248+ # '
249+ # ' Numeric specifying the upper point in the y-axis range.
232250# '
233251# ' @return A plotly object specifying the generated eDISH plot.
234252# '
0 commit comments