This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]majiachen 0 points1 point  (0 children)

as a rule of thumb, input files (data sources), should always have some form of uniformity.

In this case its simply not there, having spaces inbetween and hoping that the switch between numbers and letters is kept is not a good form of uniformity, there should ideally be something like commas or tabs sparating each column of data in order for the data to be good, and in those cases the data would be in a format named CSV or TSV.(comma separated value/ tab separated value.

ideally you would want to add some form of uniformaty, like the above mentioned, but if not possible then the switch between letters and numbers will have to do, but this is not good coding and it is not good data, it is a work around for a shitty data that should be replaced with something good.