latest version render

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-10-07 13:59:36 +02:00
commit 8db847b43d
No known key found for this signature in database
28 changed files with 397 additions and 107 deletions

26
man/limit_data_size.Rd Normal file
View file

@ -0,0 +1,26 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/import-file-ext.R
\name{limit_data_size}
\alias{limit_data_size}
\title{Limit the allowed data set size by number of cells}
\usage{
limit_data_size(data, limit = NULL)
}
\arguments{
\item{data}{data.frame}
\item{limit}{cell number limit. Default is NULL.}
}
\value{
data.frame
}
\description{
This function may act to guard a hosted app against very large data sets in
addition to the file size limitations.
The function will limit the data set by dropping rows.
}
\examples{
prod(dim(mtcars))
limit_data_size(mtcars)
limit_data_size(mtcars,100)
}