Some times, i want use read_clipboard
to read Series
es, and i would have to do:
pd.Series(pd.read_clipboard(header=None).values[:,0])
So would it be nice if there was an easier way?
I can do it very easily for data-frames, like:
pd.read_clipboard()
And that's it.
But for Series
, it's much longer-one-liner.
So is there an easier way?
That i don't know?
Any secretive code?