-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
df := DataFrame
withRows: #(
('A1' 'B1' 'D1' 'C1')
('A2' 'B2' 'D2' 'C2'))
columnNames: #('A' 'B' 'D' 'C').
ds := DataSeries
withKeys: #('A' 'B' 'C' 'D')
values: #('A3' 'B3' 'C3' 'D3')
name: 3.
df addRow: ds.Rotating ds's keys does not affect output
ds := DataSeries
withKeys: #('D' 'C' 'B' 'A')
values: #('D3' 'C3' 'B3' 'A3')
name: 3.
df addRow: ds.DataFrame addRow: should rearrange ds's keys values according to keys before adding them into the DataFrameInternal
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done

