Learn R Programming

onlineforecast (version 1.0.2)

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

Description

Compare two data.lists

Usage

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

Value

logical

Arguments

x

first data.list

y

second data.list

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

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