DataFrame constructor not properly called! error
You are providing a string representation of a dict to the DataFrame constructor, and not a dict itself. So this is the reason you get that error. So if you want to use your code, you could do: But better would be to not create the string in the first place, but directly putting it in a … Read more