You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If the dataframe has same element name with different case and space, the write_dataframe is sometime aggregating
the values, sometime picking one or the other.
To Reproduce
Tested on a 2D cube with elements, Child1 and Value. attaching the code in the image. sample data
data = {'Sample Dim':['Child1','Child1'],
'Measure':['Value','Value'],
'Value':[12,15]
}
data = {'Sample Dim':['Child1','Child 1'],
'Measure':['Value','Value'],
'Value':[12,15]
}
data = {'Sample Dim':['Child1','child1'],
'Measure':['Value','Value'],
'Value':[12,15]
}
Expected behavior
Every time the cube should have 27 (considering it will always aggregate duplicate entries), or the last record i.e. 15 (if not aggregating)
Version
TM1py [2.0]
TM1 Server Version: [e.g. 11.8]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
If the dataframe has same element name with different case and space, the
write_dataframe
is sometime aggregatingthe values, sometime picking one or the other.
To Reproduce
Tested on a 2D cube with elements, Child1 and Value. attaching the code in the image. sample data
Expected behavior
Every time the cube should have 27 (considering it will always aggregate duplicate entries), or the last record i.e. 15 (if not aggregating)
Version
TM1py [2.0]
TM1 Server Version: [e.g. 11.8]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: