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
you're calling .split on an array, which will first stringify the array by inserting single spaces between the lines and then splitting it by "\t". That causes fields from the end of one line and the beginning of the next line to be considered a single field with a space in the middle.
you'll need something like lines>>.split("\t")>>.Slip.&flat or lines.join("\t").split("\t") to get the right behavior
The text was updated successfully, but these errors were encountered:
you're calling .split on an array, which will first stringify the array by inserting single spaces between the lines and then splitting it by "\t". That causes fields from the end of one line and the beginning of the next line to be considered a single field with a space in the middle.
you'll need something like
lines>>.split("\t")>>.Slip.&flat
orlines.join("\t").split("\t")
to get the right behaviorThe text was updated successfully, but these errors were encountered: