Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ICARTT Python Package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MBEES
ICARTT Python Package
Commits
8e63fb9e
Commit
8e63fb9e
authored
3 years ago
by
Christoph Knote
Browse files
Options
Downloads
Patches
Plain Diff
Make a copy of the data upon adding
parent
4472d96b
No related branches found
No related tags found
1 merge request
!20
Make a copy of the data upon adding
Pipeline
#106
passed
2 years ago
Stage: build_package
Stage: testing
Stage: create_docs
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/icartt/dataset.py
+6
-4
6 additions, 4 deletions
src/icartt/dataset.py
with
6 additions
and
4 deletions
src/icartt/dataset.py
+
6
−
4
View file @
8e63fb9e
...
...
@@ -87,18 +87,20 @@ class DataStore1001:
"""
if
not
isinstance
(
newData
,
np
.
ndarray
):
raise
TypeError
(
"
Input data needs to be numpy ndarray.
"
)
if
newData
.
dtype
.
names
is
None
:
workData
=
newData
.
copy
()
if
workData
.
dtype
.
names
is
None
:
try
:
new
Data
.
dtype
=
[(
name
,
new
Data
.
dtype
)
for
name
in
self
.
varnames
]
work
Data
.
dtype
=
[(
name
,
work
Data
.
dtype
)
for
name
in
self
.
varnames
]
except
:
ValueError
(
"
Could not assign names to data structure, are you providing an array containing all variables?
"
)
if
self
.
data
is
None
:
self
.
data
=
new
Data
self
.
data
=
work
Data
else
:
self
.
data
=
np
.
append
(
self
.
data
,
new
Data
)
self
.
data
=
np
.
append
(
self
.
data
,
work
Data
)
def
denanify
(
self
,
d
):
dd
=
d
.
copy
()
...
...
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