Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dios
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RDM
dios
Commits
922bafe0
Commit
922bafe0
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
equals docu
parent
75592cc0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dios/dios.py
+25
-3
25 additions, 3 deletions
dios/dios.py
with
25 additions
and
3 deletions
dios/dios.py
+
25
−
3
View file @
922bafe0
...
...
@@ -645,12 +645,34 @@ class DictOfSeries(_DiosBase):
raise
ValueError
(
axis
)
# ----------------------------------------------------------------------
# Boolean stuff
# Boolean
and empty
stuff
def
equals
(
self
,
other
):
"""
Test whether two DictOfSeries contain the same elements.
This function allows two DictOfSeries to be compared against each other to see
if they have the same shape and elements. NaNs in the same location are considered equal.
The column headers do not need to have the same type, but the elements within the columns
must be the same dtype.
Parameters
----------
other: DictOfSeries
The other DictOfSeries to compare with.
Returns
-------
bool
True if all elements are the same in both DictOfSeries, False otherwise.
"""
if
not
isinstance
(
other
,
DictOfSeries
):
return
False
try
:
eqna
=
(
self
.
isna
()
==
other
.
isna
()).
all
(
None
)
return
eqna
and
(
self
.
dropna
()
==
other
.
dropna
()).
all
(
None
)
eq_nans
=
(
self
.
isna
()
==
other
.
isna
()).
all
(
None
)
eq_data
=
(
self
.
dropna
()
==
other
.
dropna
()).
all
(
None
)
eq_dtypes
=
(
self
.
dtypes
==
other
.
dtypes
).
all
()
return
eq_nans
and
eq_dtypes
and
eq_data
except
Exception
:
return
False
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment