Learn R Programming

beautier (version 2.6.12)

are_equal_screenlogs: Determine if two screenlogs are equal.

Description

Will stop if the arguments are not screenlogs.

Usage

are_equal_screenlogs(screenlog_1, screenlog_2)

Value

TRUE if the two screenlogs are equal

Arguments

screenlog_1

an screenlog, as created by create_screenlog

screenlog_2

an screenlog, as created by create_screenlog

Author

Richèl J.C. Bilderbeek

See Also

Use create_screenlog to create an screenlog

Examples

Run this code
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()

Run the code above in your browser using DataLab