0

When using pandas read_table (version 0.13.1), I'm getting the following error

data = pd.read_table(filename, header=0, sep=r'\s+', skip_blank_lines=True)

parser_f() got an unexpected keyword argument 'skip_blank_lines'

smci
  • 32,567
  • 20
  • 113
  • 146
Bobo
  • 941
  • 2
  • 11
  • 19

1 Answers1

2

As the docs for 0.13.1's read_table show, there is no skip_blank_lines argument.

That wasn't introduced until 0.15.0:

skip_blank_lines : boolean, default True
    If True, skip over blank lines rather than interpreting as NaN values
DSM
  • 342,061
  • 65
  • 592
  • 494