Here's my dataframe df
I'm trying:
df=data.frame(rbind(c(1,"*","*"),c("*",3,"*"))
df2=as.data.frame(sapply(df,sub,pattern="*",replacement="NA"))
It doesn't work because of the asterisk but I'm getting mad trying to replace it.
|
Here's my dataframe df I'm trying:
It doesn't work because of the asterisk but I'm getting mad trying to replace it. |
||||
|
You should put up a full reproducible example, people will be more inclined to help when you make it easy for em. Anywho...
|
|||
|
Both solutions here address an object already in your workplace. If possible (or at least in the future) you can make use of the Here's an example: This just writes a file named "readmein.txt" to your current working directory and verifies that it is there.
Here's
Update: Objects already in your workplaceI see another problem with the other two answers: They both result in character (or rather factor) variables, even when the column should have possibly been numeric. Here's an example. First, we create an example dataset. For fun, I've added another character to be treated as
Let's make a copy, and then solve this in what I would consider the most obvious "R" way:
Looks OK...
... but I presume that V2 and V4 should have been numeric....
Here's a workaround:
Update 2: (Yet another) alternativeIt might be more appropriate to make use of
|
||||
|
|
|
If you just have
|
|||
|
|
|
This could work (It's a pretty flexible) but there's other great solutions already. Arun's solution is my typical approach but created
|
||||
|
|
regexsolution for this problem? – Arun Feb 9 at 9:52