blob: 1cef024195b1270b6441b46a57d2905d8e25d2ca [file] [log] [blame]
Hao Zhufdff6f42020-08-09 14:38:10 -04001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/remove_column.R
3\name{remove_column}
4\alias{remove_column}
5\title{Remove columns}
6\usage{
7remove_column(kable_input, columns)
8}
9\arguments{
10\item{kable_input}{Output of \code{\link[knitr:kable]{knitr::kable()}} with format specified}
11
12\item{columns}{A numeric value or vector indicating in which column(s) rows
13need to be removed}
14}
15\description{
16Remove columns
17}
18\examples{
Hao Zhu9399dcc2020-08-26 17:27:38 -040019\dontrun{
Hao Zhufdff6f42020-08-09 14:38:10 -040020remove_column(kable(mtcars), 1)
21}
Hao Zhu9399dcc2020-08-26 17:27:38 -040022}