Description Usage Arguments Examples
View source: R/transfer_data.R
Export data to excel file
1 2 |
data |
Content to export to excel file |
file_path |
Name of excel file that is the destination for |
colnames |
Boolean indicating whether column names should be written as first row (default: TRUE) |
rownames |
Boolean indicating whther row names should be written as first column (default: TRUE) |
name_sheet |
String indicating what is to be the name of the sheet containing the newly imported data (default: "Sheet1") |
add_to_file |
Boolean indicating whether data should be added as a new excel sheet to a current excel file or if data should replace all existing excel sheets (default: FALSE) |
1 2 3 4 | data(Fincher_lateral_muscle)
export_excel(data = Fincher_lateral_muscle,
file_path = "C:/Users/exampleUser/Desktop/planaria.xlsx",
name_sheet = "LatMuscle", add_to_file = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.