How to read a file delimited by \ in R? -
i have file follows in text file
a\b\c\d\f 399\i 2017\11\m\09 491\i 2017\01\ma\161 4\i 2014\01\m\16
in a
, b
, c
, d
, f
names of variables.
try use without results
mv <- read.csv("p.txt", header=t, sep = "\")
Comments
Post a Comment