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
6f9fb290
Commit
6f9fb290
authored
5 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
dtypes and astype
parent
884c4526
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dios/dios.py
+16
-4
16 additions, 4 deletions
dios/dios.py
dios/locator.py
+8
-3
8 additions, 3 deletions
dios/locator.py
with
24 additions
and
7 deletions
dios/dios.py
+
16
−
4
View file @
6f9fb290
...
...
@@ -208,14 +208,13 @@ class DictOfSeries:
def
_getitem_bool_dios
(
self
,
key
):
# align columns
keys
=
self
.
columns
.
intersection
(
key
.
columns
)
for
k
in
keys
:
if
not
is_bool_indexer
(
key
[
k
]):
raise
ValueError
(
"
Must pass DictOfSeries with boolean values only
"
)
new
=
self
.
copy_empty
(
columns
=
True
)
for
k
in
keys
:
ser
=
self
.
_data
.
at
[
k
]
boolser
=
key
[
k
]
if
not
is_bool_indexer
(
boolser
):
raise
ValueError
(
"
Must pass DictOfSeries with boolean values only
"
)
# align rows
idx
=
boolser
[
boolser
].
index
.
intersection
(
ser
.
index
)
new
.
_data
.
at
[
k
]
=
ser
.
loc
[
idx
]
...
...
@@ -407,6 +406,19 @@ class DictOfSeries:
new
=
pd
.
Series
(
data
=
new
,
index
=
self
.
columns
)
return
new
@property
def
dtypes
(
self
):
s
=
pd
.
Series
(
index
=
self
.
columns
,
dtype
=
'
O
'
)
for
k
in
self
.
columns
:
s
.
at
[
k
]
=
self
.
_data
.
at
[
k
].
dtype
return
s
def
astype
(
self
,
dtype
,
copy
=
True
,
errors
=
'
raise
'
):
new
=
self
.
copy_empty
(
columns
=
False
)
if
copy
else
self
for
k
in
self
.
columns
.
copy
():
new
.
_data
.
at
[
k
]
=
self
.
_data
.
at
[
k
].
astype
(
dtype
=
dtype
,
copy
=
True
,
errors
=
errors
)
return
new
def
_op1
(
self
,
op
):
new
=
self
.
copy_empty
(
columns
=
False
)
try
:
...
...
This diff is collapsed.
Click to expand it.
dios/locator.py
+
8
−
3
View file @
6f9fb290
...
...
@@ -160,11 +160,9 @@ class _aLocIndexer(_Indexer):
def
__getitem__
(
self
,
key
):
rowkeys
,
colkeys
=
self
.
_unpack_key_aloc
(
key
)
new
=
self
.
_dios
.
copy_empty
(
columns
=
False
)
for
i
,
c
in
enumerate
(
colkeys
):
new
.
_data
.
at
[
c
]
=
self
.
_dios
.
loc
[
rowkeys
[
i
],
c
]
return
new
def
_unpack_key_aloc
(
self
,
key
):
...
...
@@ -172,15 +170,22 @@ class _aLocIndexer(_Indexer):
Return a list of row indexer and a list of existing(!) column labels.
Both list always have the same length and also could be empty together.
"""
# boolean dios
if
is_dios_like
(
key
):
colkey
=
self
.
_dios
.
columns
.
intersection
(
key
.
columns
).
to_list
()
rowkey
=
[]
for
c
in
colkey
:
rowkey
+=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
key
[
c
].
index
)]
b
=
key
[
c
]
if
not
is_bool_indexer
(
b
):
raise
ValueError
(
"
Must pass DictOfSeries with boolean values only
"
)
rowkey
+=
[
self
.
_data
.
at
[
c
].
index
.
intersection
(
b
[
b
].
index
)]
else
:
rowkey
,
colkey
=
self
.
_unpack_key
(
key
)
if
is_dios_like
(
rowkey
)
or
is_dios_like
(
colkey
):
raise
ValueError
(
"
multidimensional key must be passed as single key
"
)
# make column-slice from scalar
if
is_hashable
(
colkey
):
colkey
=
[
colkey
]
if
colkey
in
self
.
_dios
.
columns
else
[]
...
...
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