I've been using gsub("toreplace","replacement", myvector)
to clean out data in R. While this works for commas and the like, removing "$"
has no effect. So if I do gsub("$","",myvector)
all the dollar signs remain in place.
I think this is because $
is a special character in R. I tried escaping it "$"
but that yields the same result (no effect). And I couldn't find a resource on escaping special characters in R.
Obviously I should do this in preprocessing. But I was wondering if anyone out there knew how to either a) escape special characters in R b) get rid of pesky $
in R directly. For science.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…