'How to separate based on a specific string
Solution 1:[1]
If you intend to do this in R, like your tag suggests:
as.data.frame(lapply(data, function(y) gsub("/", " ", y)))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Leonhard Geisler |

