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
Line 20: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object.
data = pd.read_html(str(table))[0]
Line 36: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing errors and catch exceptions explicitly instead
data = data.apply(pd.to_numeric, errors="ignore")
The text was updated successfully, but these errors were encountered:
Line 20: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object.
data = pd.read_html(str(table))[0]
Line 36: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing
errors
and catch exceptions explicitly insteaddata = data.apply(pd.to_numeric, errors="ignore")
The text was updated successfully, but these errors were encountered: