This function open in Excel a data frame, returning it invisibly to
be "pipe-able". The operation is done only in interactive session, so
that it has no effect on pipe-chains of code executed in batch.
Usage
view_in_excel(.data)
Value
the `.data`, unchanged and invisibly
Arguments
.data
a data frame
Details
This function is useful for intermediate inspection of
data, possibly in the middle of piped transformations.
This version: avoid unwanted execution (interactive session only),
embed the correct extension in the temporary file, add BOM for Excel
pleasure, and return the output invisibly, in case it is the last
element of the chain.