We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When querying a view, column names containing unicode characters aren't parsed correctly.
E.g.
view_data_response = querying.get_view_data_dataframe(self.connection, view_id=self.view_id, parameter_dict=temp_dict_combine).drop_duplicates( keep='first') print(view_data_response.columns)
Result:
Index(['Academic Year', 'Measure Names', 'Avg. Value in £000s', 'Value in £000s'], dtype='object')
Expected:
Index(['Academic Year', 'Measure Names', 'Avg. Value in £000s', 'Value in £000s'], dtype='object')
The text was updated successfully, but these errors were encountered:
Any news on this issue?
Sorry, something went wrong.
And not just in column names, also in the dataframe
No branches or pull requests
When querying a view, column names containing unicode characters aren't parsed correctly.
E.g.
Result:
Expected:
The text was updated successfully, but these errors were encountered: