Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
I get an error when I add the squeeze = True to the pd.read method.
4 answers ( 0 marked as helpful)
Hi Donald!
Thanks for reaching out!
Apparently, the squeeze
argument has been deprecated and is probably already removed in the latest Python versions. Instead, you can append .squeeze("columns")
to the call the squeeze:
data.squeeze("columns")
Best,
Ivan
Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
Thanks but now I'm getting this error.
Hi Donald!
Please try typing "columns" with a small 'c'.
data.squeeze("columns")
Hope this helps.
Best,
Ivan
Above answer worked when i got same error.