clipExcel.Rd
The clipExcel function takes in a tibble / dataframe and arguments for row and column names. Its only return value is that tibble copied to the clipboard in a format that can be easily pasted to Excel Taken from https://stackoverflow.com/questions/24704344/copy-an-r-data-frame-to-an-excel-spreadsheet
clipExcel(x, row.names = FALSE, col.names = TRUE, na = "", ...)
A tibble.
Logical, include row names?
Logical, include column names?
What to do with NA values? Default to blank
Any further arguments to write.table
clipExcel(iris)