are_equal_treelogs: Determine if two treelogs are equal.

View source: R/are_equal_treelogs.R

are_equal_treelogsR Documentation

Determine if two treelogs are equal.

Description

Will stop if the arguments are not treelogs.

Usage

are_equal_treelogs(treelog_1, treelog_2)

Arguments

treelog_1

an treelog, as created by create_treelog

treelog_2

an treelog, as created by create_treelog

Value

TRUE if the two treelogs are equal

Author(s)

Richèl J.C. Bilderbeek

See Also

Use create_treelog to create an treelog

Examples

check_empty_beautier_folder()

treelog_1 <- create_treelog(log_every = 1000)
treelog_2 <- create_treelog(log_every = 314)
# TRUE
are_equal_treelogs(treelog_1, treelog_1)
# FALSE
are_equal_treelogs(treelog_1, treelog_2)

check_empty_beautier_folder()

ropensci/beautier documentation built on April 2, 2024, 5:01 a.m.