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
Nulls are not properly handled in the first row of the dataset. However, if null exists in a later row, then the chart will render properly.
A current workaround to this problem is to cast null values as strings, but that creates an additional challenge of columns being inferred as "string" type even if they are numeric.
Nulls are not properly handled in the first row of the dataset. However, if null exists in a later row, then the chart will render properly.
A current workaround to this problem is to cast
null
values as strings, but that creates an additional challenge of columns being inferred as "string" type even if they are numeric.The source of this issue is here
https://github.com/BigFatDog/parcoords-es/blob/master/src/api/detectDimensionTypes.js#L3-L10
I have written this PR with a proposed fix #117
The text was updated successfully, but these errors were encountered: