Jupyter Notebook data export bug(?)

Hello,

I’m encountering an issue with the generated input being fed into the Jupyter Notebook. Specifically, the attribute tag reasonMsgWasSent appears to be causing problems. When I download the input data as a CSV, I see two columns with this same tag. One of them is completely empty, while the other contains relevant data. This duplication doesn’t seem to occur with any other attribute tag.

For context, the CSV contains data for all devices. I’ve reviewed the source data and done my best to verify that the attribute names and tags match across the devices in question.

I attached an example CSVfile.
input (4).csv (14.6 KB)

I took a look in your application to verify my theory: One of your devices (ID 67f6e55432043c0cb14ddb23) has that attribute defined as a number data type, whereas the other devices in your application define it as a string.

Bad news is, you cannot change an attribute’s data type after creation. Good news is, that particular device does not seem to have any data stored against that attribute. So you can just delete the attribute and recreate it as a string-type.

That did it. Thank you!