---
description: How to Export Data from R In this tutorial, we will learn how to export data from R environment to different formats. To export data to the hard drive, you need the file path and an extension. First o
title: How to Export Data from R to CSV, Excel
image: https://www.guru99.com/images/r_programming/032918_0502_RExportingD1.png
---

 

[Skip to content](#main) 

## How to Export Data from R

In this tutorial, we will learn how to export data from R environment to different formats.

To export data to the hard drive, you need the file path and an extension. First of all, the path is the location where the data will be stored. In this tutorial, you will see how to store data on:

* The hard drive
* Google Drive
* Dropbox

Secondly, R allows the users to export the data into different types of files. We cover the essential file’s extension:

* csv
* xlsx
* RDS
* SAS
* SPSS
* STATA

Overall, it is not difficult to export data from R. 

## Export to Hard drive

To begin with, you can save the data directly into the working directory. The following code prints the path of your working directory:

directory <-getwd()
directory

**Output:**

## [1] "/Users/15_Export_to_do"

By default, the file will be saved in the below path.

For Mac OS:

/Users/USERNAME/Downloads/

For Windows:

C:\Users\USERNAME\Documents\

You can, of course, set a different path. For instance, you can change the path to the download folder.

### Create data frame

First of all, let’s import the mtcars dataset and get the mean of mpg and disp grouped by gear.

library(dplyr)
df <-mtcars % > %
    select(mpg, disp, gear) % > %
    group_by(gear) % > %
    summarize(mean_mpg = mean(mpg), mean_disp = mean(disp))
df

**Output:**

## # A tibble: 3 x 3
##	gear mean_mpg mean_disp
##	<dbl>	<dbl>	lt;dbl>
## 1	3 16.10667  326.3000
## 2 	4 24.53333  123.0167
## 3	5 21.38000  202.4800

The table contains three rows and three columns. You can create a CSV file with the function write.csv in R.

## How to Export a DataFrame to a CSV File in R

The basic syntax of write.csv in R to Export the DataFrame to CSV in R:

write.csv(df, path)
arguments
-df: Dataset to save. Need to be the same name of the data frame in the environment.
-path: A string. Set the destination path. Path + filename + extension i.e. "/Users/USERNAME/Downloads/mydata.csv" or the filename + extension if the folder is the same as the working directory

Example:

write.csv(df, "table_car.csv")

Code Explanation

* write.csv(df, “table\_car.csv”): Create a CSV file in the hard drive:  
  * df: name of the data frame in the environment
  * “table\_car.csv”: Name the file table\_car and store it as csv

**Note**: You can use the function write.csv in R as write.csv2() to separate the rows with a semicolon for R export to csv data.

write.csv2(df, "table_car.csv")

**Note**: For pedagogical purpose only, we created a function called open\_folder() to open the directory folder for you. You just need to run the code below and see where the csv file is stored. You should see a file names table\_car.csv for data R export to csv.

# Run this code to create the function
open_folder <-function(dir){
	if (.Platform['OS.type'] == "windows"){
	shell.exec(dir)  
	} else {
	system(paste(Sys.getenv("R_BROWSER"), dir))
  }
}
# Call the function to open the folder
open_folder(directory)

### RELATED ARTICLES

* [Data Types in R with Example ](https://www.guru99.com/r-data-types-operator.html "Data Types in R with Example")
* [For Loop in R with Examples for List and Matrix ](https://www.guru99.com/r-for-loop.html "For Loop in R with Examples for List and Matrix")
* [R While Loop with Programming Examples ](https://www.guru99.com/r-while-loop.html "R While Loop with Programming Examples")
* [T-Test in R Programming: One Sample & Paired T-Test \[Example\] ](https://www.guru99.com/r-t-test-one-sample.html "T-Test in R Programming: One Sample & Paired T-Test [Example]")

## How to Export a Data from R to Excel File

Now, we will learn how to export data from R to Excel:

Export data from R to Excel is trivial for Windows users and trickier for Mac OS user. Both users will use the library xlsx to create an Excel file. The slight difference comes from the installation of the library. Indeed, the library xlsx uses Java to create the file. Java needs to be installed if not present in your machine for Data R export to Excel.

**Windows users**

If you are a Windows user, you can install the library directly with conda to export dataframe to excel R:

conda install -c r r-xlsx

Once the library installed, you can use the function write.xlsx(). A new Excel workbook is created in the working directory for R export to Excel data

library(xlsx)
write.xlsx(df, "table_car.xlsx")

If you are a Mac OS user, you need to follow these steps:

* Step 1: Install the latest version of Java
* Step 2: Install library rJava
* Step 3: Install library xlsx

**Step 1)** You could download Java from official Oracle site and install it.

You can go back to Rstudio and check which version of Java is installed.

system("java -version")

At the time of the tutorial, the latest version of Java is 9.0.4.

**Step 2)** You need to install rjava in R. We recommended you to install R and Rstudio with Anaconda. Anaconda manages the dependencies between libraries. In this sense, Anaconda will handle the intricacies of rJava installation.

First of all, you need to update conda and then install the [library](https://anaconda.org/r/r-rjava). You can copy and paste the next two lines of code in the terminal.

conda - conda update
conda install -c r r-rjava

Next, open rjava in Rstudio

library(rJava)

**Step 3)** Finally, it is time to install xlsx. Once again, you can use [conda](https://anaconda.org/r/r-xlsx) to do it:

conda install -c r r-xlsx

Just as the windows users, you can save data with the function write.xlsx()

library(xlsx)

**Output:**

## Loading required package: xlsxjars

write.xlsx(df, "table_car.xlsx")

## Exporting Data from R to Different Software

Exporting data to different software is as simple as importing them. The library “haven” provides a convenient way to export data to

* spss
* sas
* stata

First of all, import the library. If you don’t have “haven”, you can go [here](https://anaconda.org/conda-forge/r-haven) to install it.

library(haven)

### SPSS file

Below is the code to export the data to SPSS software:

write_sav(df, "table_car.sav")

## Exporting Data from R to SAS File

Just as simple as spss, you can export to sas

write_sas(df, "table_car.sas7bdat")

## How to Export Data from R to STATA File

Finally, haven library allows writing .dta file.

write_dta(df, "table_car.dta")

### R

If you want to save a data frame or any other R object, you can use the save() function.

save(df, file ='table_car.RData')

You can check the files created above in the present working directory

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD1.png)

## Interact with the Cloud Services

Last but not least, [R](https://www.guru99.com/r-tutorial.html) is equipped with fantastic libraries to interact with the cloud computing services. The last part of this tutorial deals with export/import files from:

* Google Drive
* Dropbox

**Note**: This part of the tutorial assumes you have an account with Google and Dropbox. If not, you can quickly create one for – Google Drive: <https://accounts.google.com/SignUp?hl=en> – Dropbox: [https://www.dropbox.com/h](https://guru99.live/QgBTOR)

## Google Drive

You need to install the library googledrive to access the function allowing to interact with Google Drive.

The library is not yet available at Anaconda. You can install it with the code below in the console.

install.packages("googledrive")

and you open the library.

library(googledrive)

For non-conda user, installing a library is easy, you can use the function install.packages(‘NAME OF PACKAGE) with the name of the package inside the parenthesis. Don’t forget the ‘ ‘. Note that, R is supposed to install the package in the \`libPaths() automatically. It is worth to see it in action.

### Upload to Google Drive

To upload a file to Google drive, you need to use the function drive\_upload().

Each time you restart Rstudio, you will be prompted to allow access tidyverse to Google Drive.

The basic syntax of drive\_upload() is

drive_upload(file, path = NULL, name = NULL)
arguments:
- file: Full name of the file to upload (i.e., including the extension)
- path: Location of the file- name: You can rename it as you wish. By default, it is the local name.

After you launch the code, you need to confirm several questions

drive_upload%<("table_car.csv", name ="table_car")

**Output:**

## Local file: 
## * table_car.csv 
## uploaded into Drive file: 
## * table_car: 1hwb57eT-9qSgDHt9CrVt5Ht7RHogQaMk 
## with MIME type: 
## * text/csv

You type 1 in the console to confirm the access

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD2.png)

Then, you are redirected to Google API to allow the access. Click Allow.

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD3.png)

Once the authentication is complete, you can quit your browser.

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD4.png)

In the Rstudio’s console, you can see the summary of the step done. Google successfully uploaded the file located locally on the Drive. Google assigned an ID to each file in the drive.

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD5.png)

You can see this file in Google Spreadsheet.

drive_browse("table_car")

**Output:**

You will be redirected to Google Spreadsheet

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD6.png)

### Import from Google Drive

Upload a file from Google Drive with the ID is convenient. If you know the file name, you can get its ID as follow:

**Note**: Depending on your internet connection and the size of your Drive, it takes times.

x <-drive_get("table_car")
as_id(x)

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD7.png)

You stored the ID in the variable x. The function drive\_download() allows downloading a file from Google Drive.

The basic syntax is:

drive_download(file, path = NULL, overwrite = FALSE)
arguments:
- file:  Name or id of the file to download
-path: Location to download the file. By default, it is downloaded to the working directory and the name as in Google Drive
-overwrite = FALSE: If the file already exists, don't overwrite it. If set to TRUE, the old file is erased and replaced by the new one.

You can finally download the file:

download_google & lt; - drive_download(as_id(x), overwrite = TRUE)

Code Explanation

* drive\_download(): Function to download a file from Google Drive
* as\_id(x): Use the ID to browse the file in Google Drive
* overwrite = TRUE: If file exists, overwrite it, else execution halted To see the name of the file locally, you can use:

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD8.png)

The file is stored in your working directory. Remember, you need to add the extenstion of the file to open it in R. You can create the full name with the function paste() (i.e. table\_car.csv)

google_file <-download_google$local_path
google_file
path <-paste(google_file, ".csv", sep = "")
google_table_car <-read.csv(path)
google_table_car

**Output:**

##   X gear mean_mpg mean_disp
## 1 1    3 16.10667  326.3000
## 2 2    4 24.53333  123.0167
## 3 3    5 21.38000  202.4800

Finally, you can remove the file from your Google drive.

## remove file
drive_find("table_car") %>%drive_rm()

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD9.gif)

It’s a slow process. Takes time to delete

## Export to Dropbox

R interacts with Dropbox via the rdrop2 library. The library is not available at Anaconda as well. You can install it via the console

install.packages('rdrop2')

library(rdrop2)

You need to provide temporary access to Dropbox with your credential. After the identification is done, R can create, remove upload and download to your Dropbox.

First of all, you need to give access to your account. The credentials are cached during all session.

drop_auth()

You will be redirected to Dropbox to confirm the authentication.

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD10.png)

You will get a confirmation page. You can close it and return to R

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD11.png)

You can create a folder with the function drop\_create().

* drop\_create(‘my\_first\_drop’): Create a folder in the first branch of Dropbox
* drop\_create(‘First\_branch/my\_first\_drop’): Create a folder inside the existing First\_branch folder.

drop_create('my_first_drop')

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD12.png)

In DropBox

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD13.png)

To upload the .csv file into your Dropbox, use the function drop\_upload().

Basic syntax:

drop_upload(file, path = NULL, mode = "overwrite")
arguments:
- file: local path
- path: Path on Dropbox 
- mode = "overwrite":  By default, overwrite an existing file. If set to `add`, the upload is not completed.

drop_upload('table_car.csv', path = "my_first_drop")

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD14.png)

At DropBox

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD15.png)

You can read the csv file from Dropbox with the function drop\_read\_csv()

dropbox_table_car <-drop_read_csv("my_first_drop/table_car.csv")
dropbox_table_car

**Output:**

##   X gear mean_mpg mean_disp
## 1 1    3 16.10667  326.3000
## 2 2    4 24.53333  123.0167
## 3 3    5 21.38000  202.4800

When you are done using the file and want to delete it. You need to write the path of the file in the function drop\_delete()

drop_delete('my_first_drop/table_car.csv')

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD16.png)

It is also possible to delete a folder

drop_delete('my_first_drop')

**Output:**

[](https://www.guru99.com/images/r%5Fprogramming/032918%5F0502%5FRExportingD17.png)

## Summary

We can summarize all the functions in the table below

| Library     | Objective                     | Function             |
| ----------- | ----------------------------- | -------------------- |
| base        | Export csv                    | write.csv()          |
| xlsx        | Export excel                  | write.xlsx()         |
| haven       | Export spss                   | write\_sav()         |
| haven       | Export sas                    | write\_sas()         |
| haven       | Export stata                  | write\_dta()         |
| base        | Export R                      | save()               |
| googledrive | Upload Google Drive           | drive\_upload()      |
| googledrive | Open in Google Drive          | drive\_browse()      |
| googledrive | Retrieve file ID              | drive\_get(as\_id()) |
| googledrive | Dowload from Google Drive     | download\_google()   |
| googledrive | Remove file from Google Drive | drive\_rm()          |
| rdrop2      | Authentification              | drop\_auth()         |
| rdrop2      | Create a folder               | drop\_create()       |
| rdrop2      | Upload to Dropbox             | drop\_upload()       |
| rdrop2      | Read csv from Dropbox         | drop\_read\_csv      |
| rdrop2      | Delete file from Dropbox      | drop\_delete()       |

#### Summarize this post with:

ChatGPT Perplexity Grok Google AI 

**Stay Updated on AI** **Get Weekly AI Skills, Trends, Actionable Advice.** 

##### Sign up for the newsletter

Subscribe for Free 

You have successfully subscribed.  
Please check your inbox. 

![AI-Newsletter]() Chosen by over **350,000+** professionals 

[Scroll to top ](#wrapper)Scroll to top 

× 

Toggle Menu Close 

Search for: 

Search

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.guru99.com/#organization","name":"Guru99","sameAs":["https://www.facebook.com/Guru99Official","https://twitter.com/guru99com"],"logo":{"@type":"ImageObject","@id":"https://www.guru99.com/#logo","url":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","contentUrl":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","caption":"Guru99","inLanguage":"en-US"}},{"@type":"WebSite","@id":"https://www.guru99.com/#website","url":"https://www.guru99.com","name":"Guru99","publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://www.guru99.com/images/r-exporting-data.png","url":"https://www.guru99.com/images/r-exporting-data.png","width":"528","height":"150","inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://www.guru99.com/r-exporting-data.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":"1","item":{"@id":"https://www.guru99.com","name":"Home"}},{"@type":"ListItem","position":"2","item":{"@id":"https://www.guru99.com/r-programming","name":"R Programming"}},{"@type":"ListItem","position":"3","item":{"@id":"https://www.guru99.com/r-exporting-data.html","name":"How to Export Data from R to CSV, Excel"}}]},{"@type":"WebPage","@id":"https://www.guru99.com/r-exporting-data.html#webpage","url":"https://www.guru99.com/r-exporting-data.html","name":"How to Export Data from R to CSV, Excel","dateModified":"2024-06-12T19:24:51+05:30","isPartOf":{"@id":"https://www.guru99.com/#website"},"primaryImageOfPage":{"@id":"https://www.guru99.com/images/r-exporting-data.png"},"inLanguage":"en-US","breadcrumb":{"@id":"https://www.guru99.com/r-exporting-data.html#breadcrumb"}},{"@type":"Person","@id":"https://www.guru99.com/author/evelyn","name":"Evelyn Clarke","description":"I'm Evelyn Clarke, an AI Research Scientist specializing in machine learning and natural language processing, dedicated to advancing the field responsibly.","url":"https://www.guru99.com/author/evelyn","image":{"@type":"ImageObject","@id":"https://www.guru99.com/images/evelyn-clarke-author-120x120.png","url":"https://www.guru99.com/images/evelyn-clarke-author-120x120.png","caption":"Evelyn Clarke","inLanguage":"en-US"},"worksFor":{"@id":"https://www.guru99.com/#organization"}},{"image":{"@id":"https://www.guru99.com/images/r-exporting-data.png"},"headline":"How to Export Data from R to CSV, Excel","description":"How to Export Data from R In this tutorial, we will learn how to export data from R environment to different formats. To export data to the hard drive, you need the file path and an extension. First o","keywords":"R, Programming","@type":"Article","author":{"@id":"https://www.guru99.com/author/evelyn","name":"Evelyn Clarke"},"dateModified":"2024-06-12T19:24:51+05:30","copyrightYear":"2024","name":"How to Export Data from R to CSV, Excel","articleSection":"R Programming","subjectOf":[{"@type":"HowTo","name":"How to Export a Data from R to Excel File","description":"Export data from R to Excel is trivial for Windows users and trickier for Mac OS users.","step":[{"@type":"HowToStep","name":"Step 1)  Install the latest version of Java","text":"You could download Java from the official Oracle site and install it. You can go back to Rstudio and check which version of Java is installed.","url":"https://www.guru99.com/r-exporting-data.html#step1"},{"@type":"HowToStep","name":"Step 2)  Install library rJava","text":"You need to install rjava in R. We recommend you to install R and Rstudio with Anaconda.","url":"https://www.guru99.com/r-exporting-data.html#step2"},{"@type":"HowToStep","name":"Step 3) Install library xlsx","text":"Finally, it is time to install xlsx. Once again, you can use conda to do it. Just as the windows users, you can save data with the function write.xlsx()","url":"https://www.guru99.com/r-exporting-data.html#step3"}]}],"@id":"https://www.guru99.com/r-exporting-data.html#schema-24863","isPartOf":{"@id":"https://www.guru99.com/r-exporting-data.html#webpage"},"publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.guru99.com/r-exporting-data.html#webpage"}}]}
```
