code: df['review'].head()
index review
output: 0 These flannel wipes are OK, but in my opinion
I want to remove punctuations from the column of the dataframe and create a new column.
code: import string
def remove_punctuations(text):
return text.translate(None,string.punctuation)
df["new_column"] = df['review'].apply(remove_punctuations)
Error:
return text.translate(None,string.punctuation)
AttributeError: 'float' object has no attribute 'translate'
I am using python 2.7. Any suggestions would be helpful.