Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の方法でStataデータセットをRにインポートしました。
library(foreign) abcdata <- read.dta("abc.dta")
「abcdata」をCSVファイルに再保存するにはどうすればよいですか?ありがとうございました。
試す:
> write.csv(data, file = "fhsdata.csv")
あなたは読む必要があります?write.table
?write.table
write.table(data, "abcdata.csv", sep=',')
または直接使用:
write.csv(...)