mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 12:37:30 +02:00
renaming to cut function to cut_var to distinct from the base-version - UI improvements - nice code formatting.
This commit is contained in:
parent
8469a5ca64
commit
361296531e
30 changed files with 1248 additions and 1686 deletions
27
man/pipe_string.Rd
Normal file
27
man/pipe_string.Rd
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/helpers.R
|
||||
\name{pipe_string}
|
||||
\alias{pipe_string}
|
||||
\title{Reduce character vector with the native pipe operator or character string}
|
||||
\usage{
|
||||
pipe_string(data, collapse = "|>\\n")
|
||||
}
|
||||
\arguments{
|
||||
\item{data}{list}
|
||||
}
|
||||
\value{
|
||||
character string
|
||||
}
|
||||
\description{
|
||||
Reduce character vector with the native pipe operator or character string
|
||||
}
|
||||
\examples{
|
||||
list(
|
||||
"mtcars",
|
||||
rlang::call2(.fn = "select", !!!list(c("cyl", "disp")), .ns = "dplyr"),
|
||||
rlang::call2(.fn = "default_parsing", .ns = "FreesearchR")
|
||||
) |>
|
||||
lapply(expression_string) |>
|
||||
pipe_string() |>
|
||||
expression_string("data<-")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue