We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
modin.__version__
import pandas as pd import modin.pandas as md pd_df = pd.read_excel("testing.xlsx) md_df = md.read_excel("testing.xlsx") print(pd_df.shape[0]-md_df.shape[0])
When reading an excel file, modin drops blank rows, while pandas does not. I don't know how to prevent modin from skipping blank rows.
File to reproduce the issue: testing.xlsx
The text was updated successfully, but these errors were encountered:
@ElLorans Thanks for filing the Github issue, I was able to reproduce and will be fixing it as part of this release
Sorry, something went wrong.
FIX-modin-project#3884: Fix read_excel() dropping empty rows
7c9cce0
Signed-off-by: Naren Krishna <naren@ponder.io>
FIX-#3884: Fix read_excel() dropping empty rows (#4161)
02e4ec9
Co-authored-by: Yaroslav Igoshev <Poolliver868@mail.ru> Signed-off-by: Naren Krishna <naren@ponder.io>
b10d644
naren-ponder
Successfully merging a pull request may close this issue.
System information
modin.__version__
): 0.12.1Describe the problem
When reading an excel file, modin drops blank rows, while pandas does not. I don't know how to prevent modin from skipping blank rows.
Source code / logs
File to reproduce the issue:
testing.xlsx
The text was updated successfully, but these errors were encountered: