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

28
man/combine_forest.Rd Normal file
View File

@@ -0,0 +1,28 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/functions.R
\name{combine_forest}
\alias{combine_forest}
\title{Combine Washington and Georgia Forest Data}
\usage{
combine_forest(wa_data, ga_data)
}
\arguments{
\item{wa_data}{A data frame containing the Washington forest inventory data.}
\item{ga_data}{A data frame containing the Georgia forest inventory data.}
}
\value{
A single combined data frame with an additional column \code{.id}
(renamed to "state") indicating the source ("WA" or "GA").
}
\description{
Merges the Washington and Georgia datasets into a single data frame, adding a
column to identify the source state.
}
\examples{
\dontrun{
combined <- combine_forest(wa_raw, ga_raw)
table(combined$state)
}
}