Skip to content

Commit 1622895

Browse files
committed
reformat
1 parent 554bdfc commit 1622895

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ Imports:
1616
htmltools,
1717
crosstalk
1818
LazyData: true
19+
RoxygenNote: 6.0.1

NAMESPACE

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
# Generated by roxygen2: fake comment so roxygen2 overwrites silently.
2-
exportPattern("^[^\\.]")
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(lineup)
4+
export(lineupOutput)
5+
export(lineupRanking)
6+
export(renderLineup)
7+
export(renderTaggle)
8+
export(taggle)

R/lineup.R

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88

9-
lineupImpl = function(data,
9+
.lineupImpl = function(data,
1010
width,
1111
height,
1212
elementId,
@@ -134,7 +134,7 @@ lineup = function(data,
134134
ranking = NULL,
135135
dependencies = crosstalk::crosstalkLibs(),
136136
...) {
137-
lineupImpl(data, width, height, elementId, options, ranking, dependencies, lineupType='lineup', ...)
137+
.lineupImpl(data, width, height, elementId, options, ranking, dependencies, lineupType='lineup', ...)
138138
}
139139

140140

@@ -184,12 +184,12 @@ taggle = function(data,
184184
ranking = NULL,
185185
dependencies = crosstalk::crosstalkLibs(),
186186
...) {
187-
lineupImpl(data, width, height, elementId, options, ranking, dependencies, lineupType='taggle', ...)
187+
.lineupImpl(data, width, height, elementId, options, ranking, dependencies, lineupType='taggle', ...)
188188
}
189189

190190
#' helper function for creating a LineUp ranking definition as used by \code{\link{lineup}}
191191
#'
192-
#' @param columns list of columns shown in this ranking, besides \textit{column names of the given data frame} following special columsn are available
192+
#' @param columns list of columns shown in this ranking, besides \emph{column names of the given data frame} following special columsn are available
193193
#' \describe{
194194
#' \item{*}{include all data frame columns}
195195
#' \item{_*}{add multiple support columns (_aggregate, _rank, _selection)}
@@ -213,7 +213,7 @@ taggle = function(data,
213213
#' \item{script}{scripted (JS code) combination of multiple numeric columns, extras \code{list(code = '...')}}
214214
#' \item{impose}{color a numerical column (column) with the color of a categorical column (categoricalColumn), changed \code{list(column = 'a', categoricalColumn = 'b')}}
215215
#' }
216-
#' @return
216+
#' @return a configured lineup ranking config
217217
#' @export
218218
#'
219219
#' @examples
@@ -256,6 +256,8 @@ lineupOutput = function(outputId,
256256
htmlwidgets::shinyWidgetOutput(outputId, 'lineup', width, height, package = 'lineup')
257257
}
258258

259+
#' Shiny render bindings for lineup
260+
#'
259261
#' @rdname lineup-shiny
260262
#' @export
261263
renderLineup = function(expr,
@@ -273,6 +275,8 @@ taggleOutput = function(outputId,
273275
htmlwidgets::shinyWidgetOutput(outputId, 'taggle', width, height, package = 'lineup')
274276
}
275277

278+
#' Shiny render bindings for taggle
279+
#'
276280
#' @rdname taggle-shiny
277281
#' @export
278282
renderTaggle = function(expr,

0 commit comments

Comments
 (0)