# Checking two dataframes for changes
# Returning TRUE (no changes) or FALSE (changes)
# This example contains no differences with previous data
butterfly::loupe(
butterflycount$february, # New or current dataset
butterflycount$january, # Previous version you are comparing it to
datetime_variable = "time" # Unique ID variable they have in common
)
# This example does contain differences with previous data
butterfly::loupe(
butterflycount$march,
butterflycount$february,
datetime_variable = "time"
)
Run the code above in your browser using DataLab