Open mrgloom opened 5 years ago
Valid scope names match one of the following regular expressions:
[A-Za-z0-9.][A-Za-z0-9_.\\-/]* (for scopes at the root) [A-Za-z0-9_.\\-/]* (for other scopes)
I think one (or more) of your column name does not support the above rule! Try to rename your column name. For example, if you use pandas data frame, you can rename your column name as:
df = df.rename(columns={"old name": "new_name"}
What is the meaning of this error?