Skip to content

Commit 49d7f59

Browse files
committed
ignore generated doc
1 parent 1622895 commit 49d7f59

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.Rhistory
33
.RData
44
examples/*.html
5+
/man

R/lineup.R

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,12 @@
111111
#' @param ... additional ranking definitions like 'ranking1=...' due to restrictions in converting parameters
112112
#'
113113
#' @return html lineup widget
114-
#' @export
115114
#'
116115
#' @examples
117116
#' lineup(mtcars)
118117
#' lineup(iris)
118+
#'
119+
#' @export
119120
lineup = function(data,
120121
width = '100%',
121122
height = NULL,
@@ -161,11 +162,12 @@ lineup = function(data,
161162
#' @param ... additional ranking definitions like 'ranking1=...' due to restrictions in converting parameters
162163
#'
163164
#' @return html taggle widget
164-
#' @export
165165
#'
166166
#' @examples
167167
#' taggle(mtcars)
168168
#' taggle(iris)
169+
#'
170+
#' @export
169171
taggle = function(data,
170172
width = '100%',
171173
height = NULL,
@@ -214,12 +216,13 @@ taggle = function(data,
214216
#' \item{impose}{color a numerical column (column) with the color of a categorical column (categoricalColumn), changed \code{list(column = 'a', categoricalColumn = 'b')}}
215217
#' }
216218
#' @return a configured lineup ranking config
217-
#' @export
218219
#'
219220
#' @examples
220221
#' lineupRanking(columns=c('*'))
221222
#' lineupRanking(columns=c('*'), sortBy = c('hp'))
222223
#' lineupRanking(columns=c('*', 'sum'), sum = list(type='weightedSum', columns = c('hp', 'wt'), weights = c(0.7, 0.3)))
224+
#'
225+
#' @export
223226
lineupRanking = function(columns = c('_*', '*'),
224227
sortBy = c(),
225228
groupBy = c(),

0 commit comments

Comments
 (0)