Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Fractalis
fractalis
Commits
e370b0f3
Commit
e370b0f3
authored
Aug 17, 2017
by
Sascha Herzinger
Browse files
fixed bug in double array etl
parent
fd44e144
Pipeline
#2264
failed with stage
in 1 minute and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
fractalis/data/etls/ada/etl_double_array.py
View file @
e370b0f3
...
...
@@ -34,7 +34,7 @@ class DoubleArrayETL(ETL):
ids
=
[]
values
=
[]
for
row
in
raw_data
:
ids
.
append
(
row
[
'id'
])
ids
.
append
(
row
[
'
_id'
][
'$o
id'
])
values
.
append
(
row
[
name
])
df
=
pd
.
DataFrame
(
values
)
df
.
insert
(
0
,
'id'
,
ids
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment