В Sun, 14 Sep 2025 19:39:58 +0200
Patrick Giraudoux <[email protected]> пишет:

> write.table(db, file = "db.txt", row.names = FALSE, quote = FALSE,
> sep = "\t")
> 
> db_import<-read.delim("db.txt")

Since write.table() had been called with quote=FALSE, you'll need to
read the file with quote="" to prevent read.delim() from interpreting
the quotes.

-- 
Best regards,
Ivan

______________________________________________
[email protected] mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide https://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to