In Julia, I would like to be able to copy a DataFrame (from the DataFrames.jl package) to the system clipboard in a format that allows me to easily paste it into another program like Excel.
If I just try clipboard(df) then it just gives me the output as if I ran print(df) at the console, which doesn't paste cleanly into Excel.