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
2bc5d621
Commit
2bc5d621
authored
5 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
aloc - boolean series support
parent
01b20e25
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Readme.md
+9
-7
9 additions, 7 deletions
Readme.md
dios/indexer.py
+8
-5
8 additions, 5 deletions
dios/indexer.py
with
17 additions
and
12 deletions
Readme.md
+
9
−
7
View file @
2bc5d621
...
...
@@ -136,17 +136,19 @@ are treated similar, as they would passed to `.loc` (actually they are really pa
the column, otherwise nothing is selected. [1]
-
*pd.Series*
: align the index from the given Series with the column, what means only common indices are used. The
actual values of the series are ignored(!).
-
*boolean pd.Series*
: like
*pd.Series*
but only True values are evaluated.
False values are equivalent to missing indices. To treat a boolean series as a
*normal*
indexer series, as decribed
above, one can use
`.aloc(usebool=False)[boolean pd.Series]`
.
*special **2D**-indexer*
are :
-
`.aloc[boolean dios-like]`
: work same like
`di[boolean dios-like]`
(see there).
Brief: full align, select where the index is present and the value is True.
-
`.aloc[dios-like, ...]`
(with Ellipsis) : Align in columns and rows, ignore values. Per common column,
the common indices are selected. The ellipsis forces to ignore the values, so a boolean dios could be
given,
where, the value
s a
re
no
t taken into account.
[2]
Brief: full align, select
items,
where the index is present and the value is True.
-
`.aloc[dios-like, ...]`
(with Ellipsis) : Align in columns and rows, ignore
its
values. Per common column,
the common indices are selected. The ellipsis forces
`aloc`
,
to ignore the values, so a boolean dios could be
treated a
s a no
n-boolean. Alternatively
`.aloc(usebool=False)[boolean dios-like]`
could be used.
[2]
-
`.aloc[nested list-like]`
: The inner lists are used as
`aloc`
-
*list*
-row-indexer (see there) on all columns.
One list for one column, which implies, that the outer list has the same length as the number of columns.
-
`.aloc(booldios=True)[boolean dios-like]`
: alias for
`.aloc[boolean dios-like]`
-
`.aloc(booldios=False)[dios-like]`
: alias for
`.aloc[dios-like, ...]`
*special handling of 1D-**values***
...
...
@@ -215,7 +217,7 @@ Empty DictOfSeries
Columns: ['a', 'b']
>>> d.aloc[d,...] # (equal to use) d.aloc(bool
dios
=False)[d]
>>> d.aloc[d,...] # (equal to use) d.aloc(
use
bool=False)[d]
a | b |
======== | ===== |
0 0.0 | 1 50 |
...
...
This diff is collapsed.
Click to expand it.
dios/indexer.py
+
8
−
5
View file @
2bc5d621
...
...
@@ -256,10 +256,10 @@ class _aLocIndexer(_Indexer):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
self
.
_use
_
bool
_dios
=
True
self
.
_usebool
=
True
def
__call__
(
self
,
bool
dios
=
True
):
self
.
_use
_
bool
_dios
=
booldios
def
__call__
(
self
,
use
bool
=
True
):
self
.
_usebool
=
usebool
return
self
def
__getitem__
(
self
,
key
):
...
...
@@ -380,7 +380,7 @@ class _aLocIndexer(_Indexer):
# (II) .aloc(booldios=False)[dios] or
# (III) .aloc(booldios=True)[dios]
elif
_is_dios_like
(
key
):
if
self
.
_use
_
bool
_dios
:
if
self
.
_usebool
:
return
keys_from_bool_dios_like
(
key
)
else
:
return
keys_from_dios_like
(
key
)
...
...
@@ -427,7 +427,10 @@ class _aLocIndexer(_Indexer):
# row-alignable: pd.Series(), align rows to every series in colkey (columns)
if
isinstance
(
rowkey
,
pd
.
Series
):
rowkey
=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
rowkey
.
index
)
for
c
in
colkey
]
if
_is_bool_indexer
(
rowkey
)
and
self
.
_usebool
:
rowkey
=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
rowkey
[
rowkey
].
index
)
for
c
in
colkey
]
else
:
rowkey
=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
rowkey
.
index
)
for
c
in
colkey
]
# handle gracefully: scalar, transform to row-slice
elif
_is_hashable
(
rowkey
):
...
...
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