Tabular parsing: column headers with initial or trailing white spaces
This is a minor issue but it often happens that column headers have an initial white spaces and this leads the column headers not to match the ones in the tabular annotation in the schema.
Could it be fixed adding the pandas annotation as shown below?
dataFrame = pd.read_csv("my_file.csv", skipinitialspace = True)
Thanks