are_equal_screenlogs {beautier} | R Documentation |
Determine if two screenlogs are equal.
Description
Will stop if the arguments are not screenlogs.
Usage
are_equal_screenlogs(screenlog_1, screenlog_2)
Arguments
screenlog_1 |
an screenlog, as created by create_screenlog |
screenlog_2 |
an screenlog, as created by create_screenlog |
Value
TRUE if the two screenlogs are equal
Author(s)
Richèl J.C. Bilderbeek
See Also
Use create_screenlog to create an screenlog
Examples
check_empty_beautier_folder()
screenlog_1 <- create_screenlog(log_every = 1000)
screenlog_2 <- create_screenlog(log_every = 314)
# TRUE
are_equal_screenlogs(screenlog_1, screenlog_1)
# FALSE
are_equal_screenlogs(screenlog_1, screenlog_2)
check_empty_beautier_folder()
[Package beautier version 2.6.12 Index]