You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you add a clipboard method so that for a 2-dimensional keyed array x, clipboard(x) allows you to paste to Excel as a table with labelled rows and columns
The below works for a DataFrame but I couldn't find the equivalent for a KeyedArray.
clipboard(x::DataFrame) = sprint(show, "text/tab-separated-values", x ) |> clipboard
The text was updated successfully, but these errors were encountered:
Could you add a
clipboard
method so that for a 2-dimensional keyed arrayx
,clipboard(x)
allows you to paste to Excel as a table with labelled rows and columnsThe below works for a DataFrame but I couldn't find the equivalent for a KeyedArray.
clipboard(x::DataFrame) = sprint(show, "text/tab-separated-values", x ) |> clipboard
The text was updated successfully, but these errors were encountered: