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
#1 - append deprecation
FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. Can be used as below
pd.concat([e_commerce_csv_df, e_commerce_json_df])) #2 - Parsing error
raise ParserError("Unknown string format: %s", timestr)
dateutil.parser._parser.ParserError: Unknown string format: 6,12/1/2010 10:03, to fix this use the original df 'e_commerce_csv_df',instead of the appended one
The text was updated successfully, but these errors were encountered:
#1 - append deprecation
FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. Can be used as below
pd.concat([e_commerce_csv_df, e_commerce_json_df]))
#2 - Parsing error
raise ParserError("Unknown string format: %s", timestr)
dateutil.parser._parser.ParserError: Unknown string format: 6,12/1/2010 10:03, to fix this use the original df 'e_commerce_csv_df',instead of the appended one
The text was updated successfully, but these errors were encountered: