I see a lot of DataFrames posted on StackOverflow that look like this:
a dt b
0 -0.713356 2015-10-01 00:00:00 -0.159170
1 -1.636397 2015-10-01 00:30:00 -1.038110
2 -1.390117 2015-10-01 01:00:00 -1.124016
I still haven't found a way to copy them to my interpreter using .read_clipboard
(list of arguments in .read_table
docs ).
I thought the key was a parameter parse_dates
:
parse_dates : boolean or list of ints or names or list of lists or dict, default False
* boolean. If True -> try parsing the index.
* list of ints or names. e.g. If [1, 2, 3] -> try parsing columns 1, 2, 3 each as a separate date column.
* list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as a single date column.
* dict, e.g. {‘foo’ : [1, 3]} -> parse columns 1, 3 as date and call result ‘foo’
pd.read_clipboard(parse_dates={'dt': [1, 2]})
raises an exception NotImplementedError: file structure not yet supported
.
When I try to skip the first line pd.read_clipboard(parse_dates=[[1, 2]], names=['a', 'dt1', 'dt2', 'b'], skiprows=1, header=None)
, I get the same exception.
How do others do it?
source
share