I am super new to R (like, this is my second day on it), but have some experience with network analysis. I'm trying to prep some data for analysis, but I can't get it cleaned up. I need to remove all capital letters, symbols, and punctuation from a column of twitter bios in my data. I've included a picture of the first part of the data.
I have tried code from similar posts, but it's not working and I'm not sure if it's because my data isn't formatted the right way (it's in a csv file). I've tried gsub, regex and a few others from other posts, but I'm sure I'm making some really basic mistakes, but I can't seem to see what I'm doing wrong.
I was trying to add a picture of what I have, but I can't seem to do that. To give you an idea, I have a csv file called twitterbios with three columns of data: "UserID", "bio", and "timestamp".
What I want is for all punctuation, capital letters, and symbols to be removed from the bios (column 2) of the twitterbios dataset. For example, one may say "I LOVE dogs!!! (Heart emoji)". I would want it to just say "i love dogs".
This may be too vague to be of any help, but I would be so grateful for any advice you can give me. Thanks!