Learn R Programming

onlineforecast (version 0.9.3)

==.data.list: Determine if two data.lists are identical

Description

Compare two data.lists

Usage

# S3 method for data.list
==(x, y)

Arguments

x

first data.list

y

second data.list

Value

logical

Details

Returns TRUE if the two data.lists are fully identical, so all data, order of variables etc. must be fully identical

Examples

Run this code
# NOT RUN {
Dbuilding == Dbuilding

D <- Dbuilding
D$Ta$k2[1] <- NA
Dbuilding == D

D <- Dbuilding
names(D)[5] <- "I"
names(D)[6] <- "Ta"
Dbuilding == D


# }

Run the code above in your browser using DataLab