8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original ticket http://projects.scipy.org/numpy/ticket/1593 on 2010-08-26 by trac user miguel, assigned to unknown.
It seems that genfromtxt's skip_footer parameter in numpy 1.4.1 ignores lines with comments or data with different layout from previous rows.
print np.genfromtxt(StringIO(4_'1 2\n'+3_'12\n'), skip_header=2, skip_footer=3) []
The text was updated successfully, but these errors were encountered:
@pierregm wrote on 2010-09-13
OK, the behavior has been rationalized in r8715 and the bug should be fixed. Please confirm before the ticket can be closed.
Sorry, something went wrong.
@rgommers wrote on 2010-10-14
In [5]: print(np.genfromtxt(StringIO(4*'1 2\n'+3*'12\n'), skip_header=2, skip_footer=3)) [[ 1. 2.] [ 1. 2.]]
Milestone changed to 1.6.0 by @mwiebe on 2011-05-24
1.6.0
BUG: Add a test for Ticket numpy#2189
ca29849
e77eb0f
No branches or pull requests
Original ticket http://projects.scipy.org/numpy/ticket/1593 on 2010-08-26 by trac user miguel, assigned to unknown.
It seems that genfromtxt's skip_footer parameter in numpy 1.4.1 ignores lines with comments or data with different layout from previous rows.
The text was updated successfully, but these errors were encountered: