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
96295317
Commit
96295317
authored
5 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
optimised indexing w sliche(None)
parent
a6a9d4b5
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/indexer.py
+18
-4
18 additions, 4 deletions
dios/indexer.py
with
18 additions
and
4 deletions
dios/indexer.py
+
18
−
4
View file @
96295317
...
...
@@ -18,6 +18,7 @@ _is_dict_like = dcom.is_dict_like
_is_number
=
dcom
.
is_number
_is_hashable
=
dcom
.
is_hashable
_is_bool_indexer
=
ccom
.
is_bool_indexer
_is_null_slice
=
ccom
.
is_null_slice
class
_Indexer
:
...
...
@@ -112,6 +113,10 @@ class _LocIndexer(_Indexer):
if
_is_dios_like
(
rowkey
)
or
_is_dios_like
(
colkey
):
raise
ValueError
(
"
Could not index with multidimensional key
"
)
# simple optimisation
if
_is_null_slice
(
rowkey
)
and
_is_null_slice
(
colkey
):
return
self
.
obj
.
copy
()
data
=
self
.
_data
.
loc
[
colkey
].
copy
()
# .loc[any, scalar] -> (a single) series
...
...
@@ -180,6 +185,10 @@ class _iLocIndexer(_Indexer):
if
_is_dios_like
(
rowkey
)
or
_is_dios_like
(
colkey
):
raise
ValueError
(
"
Cannot index with multidimensional key
"
)
# simple optimisation
if
_is_null_slice
(
rowkey
)
and
_is_null_slice
(
colkey
):
return
self
.
obj
.
copy
()
data
=
self
.
_data
.
iloc
[
colkey
].
copy
()
# .iloc[any, int] -> single series
...
...
@@ -240,7 +249,7 @@ class _aLocIndexer(_Indexer):
"""
align Indexer
Automatically align (alignable) indexer on all possible axis,
and handle indexing with non-existent or missing keys gra
t
efully.
and handle indexing with non-existent or missing keys gra
c
efully.
Also align (alignable) values before setting them with .loc
"""
...
...
@@ -390,7 +399,7 @@ class _aLocIndexer(_Indexer):
elif
_is_dios_like
(
colkey
)
or
_is_nested_list_like
(
colkey
):
raise
ValueError
(
"
Could not index with multi-dimensional column key.
"
)
# handle gra
t
efully: scalar
# handle gra
c
efully: scalar
if
_is_hashable
(
colkey
):
colkey
=
[
colkey
]
if
colkey
in
self
.
obj
.
columns
else
[]
lowdim
=
True
...
...
@@ -400,6 +409,11 @@ class _aLocIndexer(_Indexer):
colkey
=
colkey
.
values
if
isinstance
(
colkey
,
pd
.
Series
)
else
colkey
colkey
=
self
.
obj
.
columns
.
intersection
(
colkey
)
# handle gracefully (automatically)
# just a simple optimisation
elif
_is_null_slice
(
colkey
):
colkey
=
self
.
obj
.
columns
# not alignable, fall back to .loc (boolean list/series, slice(..), etc.
else
:
colkey
=
self
.
_data
.
loc
[
colkey
].
index
...
...
@@ -414,11 +428,11 @@ class _aLocIndexer(_Indexer):
if
isinstance
(
rowkey
,
pd
.
Series
):
rowkey
=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
rowkey
.
index
)
for
c
in
colkey
]
# handle gra
t
efully: scalar, transform to row-slice
# handle gra
c
efully: scalar, transform to row-slice
elif
_is_hashable
(
rowkey
):
rowkey
=
[
slice
(
rowkey
,
rowkey
)]
*
len
(
colkey
)
# handle gra
t
efully: list-like, filter only existing rows
# handle gra
c
efully: list-like, filter only existing rows
# NOTE: dios.aloc[series.index] is processed here
elif
_is_list_like
(
rowkey
)
and
not
_is_bool_indexer
(
rowkey
):
rowkey
=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
rowkey
)
for
c
in
colkey
]
...
...
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