There are numerous methods for exporting R objects into other formats . For SPSS, SAS and Stata, you will need to load the foreign packages. For Excel, you will need the xlsReadWrite package.
write.table(mydata, "c:/mydata.txt", sep="\t")
library(xlsx) write.xlsx(mydata, "c:/mydata.xlsx")
(To work with R and Excel, try this interactive course on importing data in R.)
# write out text datafile and # an SPSS program to read it library(foreign) write.foreign(mydata, "c:/mydata.txt", "c:/mydata.sps", package="SPSS")
(Alternatively, to practice importing SPSS data with the foreign package, try this exercise.)
# write out text datafile and # an SAS program to read it library(foreign) write.foreign(mydata, "c:/mydata.txt", "c:/mydata.sas", package="SAS")
# export data frame to Stata binary format library(foreign) write.dta(mydata, "c:/mydata.dta")
(Alternatively, to practice importing Stata data with the foreign package, try this exercise.)