You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am basically just doing whatever the author of this blog has done but somehow I am running into a weird error.
The data frame has about 108 rows but when I do sheet("A1", df_oz, headers=True), it sort of warps after 100 rows! Attaching a screenshot and the code.
@gionatamettifogo Yea that works, thanks. I hope the auto resize feature is included, otherwise it can get pretty tedious for large datasets! @ricklamers
I am basically just doing whatever the author of this blog has done but somehow I am running into a weird error.
The data frame has about 108 rows but when I do
sheet("A1", df_oz, headers=True)
, it sort of warps after 100 rows! Attaching a screenshot and the code.I think rows over 100 isn't supported. I get desired output when I do
df_oz = df_oz[:99]
.The text was updated successfully, but these errors were encountered: