29 lines
758 B
R
29 lines
758 B
R
% 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)
|
|
}
|
|
|
|
}
|