initial commit

This commit is contained in:
2026-02-10 04:52:37 -05:00
commit 0476f6f8f8
65 changed files with 15368 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/functions.R
\name{create_stats_summary}
\alias{create_stats_summary}
\title{Create Statistical Summary of Forest Data}
\usage{
create_stats_summary(data)
}
\arguments{
\item{data}{A data frame or sf object containing the forest data.}
}
\value{
A data frame with descriptive statistics (mean, sd, min, max, etc.),
sorted by descending absolute kurtosis.
}
\description{
Generates descriptive statistics for numeric variables in the dataset,
excluding spatial coordinates (lat/lon) and year. It sorts the results
by kurtosis to highlight non-normal distributions.
}