문제

I am trying to write a series of characters and numerical values using sprintf and sink:

 sink("sample.txt", append=TRUE, split=TRUE)
 sprintf("Hello World")

of course, the above is an example, so I don't have the numerical values from a data frame above, but I need to use sprintf.

The output in the text file (sample.txt) looks like this:

 [1] Hello World

How do I remove the [1] from the line? Is there a way so the [1] won't write to the file?

도움이 되었습니까?

해결책

Two options spring to mind, using cat() or writeLines()

> cat(sprintf("Hello World"), "\n")
Hello World 
> writeLines(sprintf("Hello World"))
Hello World

The problem you have is that sprintf() returns a character vector and like any other character vector R prints it like a vector if you print it. What you want is the string contained with the first element of the character vector (the only one in this case). Hence we use tools to write out the string not print the character vector.

Note that both these can write directly to a file via the file argument (in cat()) or the con argument (in writeLines()), which you may find useful.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top