Time:11-27
I like to use SMS Spam Collection Data Set which can be found on
SMS Spam Collection Data Set
CodePudding user response:
This should work
df= pd.read_csv("your_file.csv", sep="\t") df.dropna(how="any", inplace=True, axis=1) df.columns = ['label', 'message'] df.head()
Page link:https//www.codepudding.com/Blockchain/623600.html