You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#' htmlDiv(sprintf("%s is the life expectancy of %s.", avgLifeExp, matching_value))
230
+
#' htmlDiv(sprintf("%s is the life expectancy of %s.",
231
+
#' avgLifeExp,
232
+
#' matching_value))
230
233
#' )
231
234
#' } else if (length(all_values) == 2) {
232
235
#' return(
233
-
#' htmlDiv(sprintf("%s is the life expectancy of %s.", avgLifeExp, paste(all_values, collapse = " and ")))
236
+
#' htmlDiv(sprintf("%s is the life expectancy of %s.",
237
+
#' avgLifeExp,
238
+
#' paste(all_values, collapse = " and ")))
234
239
#' )
235
240
#' } else {
236
241
#' return(
237
-
#' htmlDiv(sprintf("%s is the life expectancy of %s, and %s.", avgLifeExp, paste(all_values[-length(all_values)], collapse = " , "), paste(all_values[length(all_values)])))
242
+
#' htmlDiv(sprintf("%s is the life expectancy of %s, and %s.",
0 commit comments