Re: [R] write csv of a structure

2020-08-12 Thread Ivan Krylov
On Tue, 11 Aug 2020 17:34:31 +0200 Pedro páramo wrote: > Error in write_csv(resultprob, file = "resultprob.csv", sep = ",") : > unused arguments (file = "resultprob.csv", sep = ",") There is utils::write.csv and there is readr::write_csv. Judging by the parameters you pass, you seem to want to

[R] write csv of a structure

2020-08-12 Thread Pedro páramo
Hi all, I want to "save" export in a csv or plain text format the results of my calculations I use cbind and I obtain what I call "resultprob" if I put deput it shows me this dput(resultprob) structure(c(88.6572680743221, 7250.7), .Dim = 1:2) > str(resultprob) num [1, 1:2] 88.7 7250.7 I use