I am trying to grep all the records of a dataframe which has a full stop in it. But it returns all the records in the dataframe no matter it has a full stop or not.
dot=e[grep(".", e$e1),]
View(dot)
Can anyone help me to do this in the correct way please?