Streamlining spectral data processing and modeling for spectroscopy applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
608 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tbl-lcol-map-funprog.R
\name{split_df2l}
\alias{split_df2l}
\title{Split a tibble data frame into a list of tibbles by a group column}
\usage{
split_df2l(tbl_df, group)
}
\arguments{
\item{tbl_df}{Tibble data frame}
\item{group}{Character vector with name of column based on which tibble
is split into a list of tibbles}
}
\value{
List of tibbles. Each tibble contains data split by
a group column within \code{tbl_df}.
}
\description{
Helper function that calls \code{split} on a tibble using a
grouping column within tibble.
}