hello all,
I want to get a string "\N a" by "paste", but when i try:
> paste("\N", "a")
following error(warning) happened:
> paste("\N", "a")
[1] "N a"
Warning messages:
1: '\N' is an unrecognized escape in a character string
2: unrecognized escape removed from "\N"
and then i tried:
> paste("\\N","a")
[1] "\\N a"
the result is not i want to get at all.
how should i deal with this problem? Thanks a lot
I want to get a string "\N a" by "paste", but when i try:
> paste("\N", "a")
following error(warning) happened:
> paste("\N", "a")
[1] "N a"
Warning messages:
1: '\N' is an unrecognized escape in a character string
2: unrecognized escape removed from "\N"
and then i tried:
> paste("\\N","a")
[1] "\\N a"
the result is not i want to get at all.
how should i deal with this problem? Thanks a lot