Should skiprows be removed?<br><br><span style="font-family: courier new,monospace;">    if skiprows:</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        warnings.warn(\</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">            "The use of `skiprows` is deprecated, it will be removed in numpy 2.0.\n" \</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            "Please use `skip_header` instead.",</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">            DeprecationWarning)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        skip_header = skiprows</span><br>
<br>Its been deprecated since 1.4. Personally, I like skiprows better than skip_header ;)<br><br>Chuck<br>