mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
35 lines
693 B
R
35 lines
693 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/visual_summary.R
|
|
\name{data_summary_gather}
|
|
\alias{data_summary_gather}
|
|
\title{Data summary for printing visual summary}
|
|
\usage{
|
|
data_summary_gather(
|
|
data,
|
|
summary.fun = class,
|
|
palette.fun = viridisLite::viridis,
|
|
na.label = "NA",
|
|
...
|
|
)
|
|
}
|
|
\arguments{
|
|
\item{data}{data.frame}
|
|
|
|
\item{summary.fun}{fun for summarising}
|
|
|
|
\item{palette.fun}{optionally use specific palette functions. First argument
|
|
has to be the length.}
|
|
|
|
\item{na.label}{label for NA}
|
|
|
|
\item{...}{overflow}
|
|
}
|
|
\value{
|
|
data.frame
|
|
}
|
|
\description{
|
|
Data summary for printing visual summary
|
|
}
|
|
\examples{
|
|
mtcars |> data_summary_gather() |> names()
|
|
}
|